$DisputeStatementSet: $.Shape<{
    candidateHash: `0x${string}`;
    session: number;
    statements: (readonly [{
        type: "Invalid";
        value: {
            type: "Explicit";
        };
    } | {
        type: "Valid";
        value:
            | {
                type: "Explicit";
            }
            | {
                type: "BackingSeconded";
                value: `0x${string}`;
            }
            | {
                type: "BackingValid";
                value: `0x${string}`;
            }
            | {
                type: "ApprovalChecking";
            }
            | {
                type: "ApprovalCheckingMultipleCandidates";
                value: `0x${string}`[];
            };
    }, number, `0x${string}`])[];
}, {
    candidateHash: `0x${string}`;
    session: number;
    statements: [{
        type: "Invalid";
        value: {
            type: "Explicit";
        };
    } | {
        type: "Valid";
        value:
            | {
                type: "Explicit";
            }
            | {
                type: "BackingSeconded";
                value: `0x${string}`;
            }
            | {
                type: "BackingValid";
                value: `0x${string}`;
            }
            | {
                type: "ApprovalChecking";
            }
            | {
                type: "ApprovalCheckingMultipleCandidates";
                value: `0x${string}`[];
            };
    }, number, `0x${string}`][];
}> = ...

A set of statements about a specific candidate.