TallyParams: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): TallyParams;
    encode(message: TallyParams, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: TallyParamsAmino): TallyParams;
    fromAminoMsg(object: TallyParamsAminoMsg): TallyParams;
    fromPartial(object: {
        expeditedQuorum?: Uint8Array;
        expeditedThreshold?: Uint8Array;
        quorum?: Uint8Array;
        threshold?: Uint8Array;
        vetoThreshold?: Uint8Array;
    }): TallyParams;
    fromProtoMsg(message: TallyParamsProtoMsg): TallyParams;
    toAmino(message: TallyParams): TallyParamsAmino;
    toAminoMsg(message: TallyParams): TallyParamsAminoMsg;
    toProto(message: TallyParams): Uint8Array;
    toProtoMsg(message: TallyParams): TallyParamsProtoMsg;
}