QueryHistoricalInfoResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): QueryHistoricalInfoResponse;
    encode(message: QueryHistoricalInfoResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: QueryHistoricalInfoResponseAmino): QueryHistoricalInfoResponse;
    fromAminoMsg(object: QueryHistoricalInfoResponseAminoMsg): QueryHistoricalInfoResponse;
    fromPartial(object: {
        hist?: {
            header?: {
                appHash?: Uint8Array;
                chainId?: string;
                consensusHash?: Uint8Array;
                dataHash?: Uint8Array;
                evidenceHash?: Uint8Array;
                height?: bigint;
                lastBlockId?: {
                    hash?: Uint8Array;
                    partSetHeader?: {
                        hash?: (...) | (...);
                        total?: (...) | (...);
                    };
                };
                lastCommitHash?: Uint8Array;
                lastResultsHash?: Uint8Array;
                nextValidatorsHash?: Uint8Array;
                proposerAddress?: Uint8Array;
                time?: Date;
                validatorsHash?: Uint8Array;
                version?: {
                    app?: bigint;
                    block?: bigint;
                };
            };
            valset?: {
                commission?: {
                    commissionRates?: {
                        maxChangeRate?: ...;
                        maxRate?: ...;
                        rate?: ...;
                    };
                    updateTime?: Date;
                };
                consensusPubkey?: {
                    $typeUrl?: string;
                    typeUrl?: string;
                    value?: Uint8Array;
                };
                delegatorShares?: string;
                description?: {
                    details?: string;
                    identity?: string;
                    moniker?: string;
                    securityContact?: string;
                    website?: string;
                };
                jailed?: boolean;
                minSelfDelegation?: string;
                operatorAddress?: string;
                status?: BondStatus;
                tokens?: string;
                unbondingHeight?: bigint;
                unbondingTime?: Date;
            }[];
        };
    }): QueryHistoricalInfoResponse;
    fromProtoMsg(message: QueryHistoricalInfoResponseProtoMsg): QueryHistoricalInfoResponse;
    toAmino(message: QueryHistoricalInfoResponse): QueryHistoricalInfoResponseAmino;
    toAminoMsg(message: QueryHistoricalInfoResponse): QueryHistoricalInfoResponseAminoMsg;
    toProto(message: QueryHistoricalInfoResponse): Uint8Array;
    toProtoMsg(message: QueryHistoricalInfoResponse): QueryHistoricalInfoResponseProtoMsg;
}