QueryProposalsRequest: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): QueryProposalsRequest;
    encode(message: QueryProposalsRequest, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: QueryProposalsRequestAmino): QueryProposalsRequest;
    fromAminoMsg(object: QueryProposalsRequestAminoMsg): QueryProposalsRequest;
    fromPartial(object: {
        depositor?: string;
        pagination?: {
            countTotal?: boolean;
            key?: Uint8Array;
            limit?: bigint;
            offset?: bigint;
            reverse?: boolean;
        };
        proposalStatus?: ProposalStatus;
        voter?: string;
    }): QueryProposalsRequest;
    fromProtoMsg(message: QueryProposalsRequestProtoMsg): QueryProposalsRequest;
    toAmino(message: QueryProposalsRequest): QueryProposalsRequestAmino;
    toAminoMsg(message: QueryProposalsRequest): QueryProposalsRequestAminoMsg;
    toProto(message: QueryProposalsRequest): Uint8Array;
    toProtoMsg(message: QueryProposalsRequest): QueryProposalsRequestProtoMsg;
}