QueryContractHistoryResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): QueryContractHistoryResponse;
    encode(message: QueryContractHistoryResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: QueryContractHistoryResponseAmino): QueryContractHistoryResponse;
    fromAminoMsg(object: QueryContractHistoryResponseAminoMsg): QueryContractHistoryResponse;
    fromPartial(object: {
        entries?: {
            codeId?: bigint;
            msg?: Uint8Array;
            operation?: ContractCodeHistoryOperationType;
            updated?: {
                blockHeight?: bigint;
                txIndex?: bigint;
            };
        }[];
        pagination?: {
            nextKey?: Uint8Array;
            total?: bigint;
        };
    }): QueryContractHistoryResponse;
    fromProtoMsg(message: QueryContractHistoryResponseProtoMsg): QueryContractHistoryResponse;
    toAmino(message: QueryContractHistoryResponse): QueryContractHistoryResponseAmino;
    toAminoMsg(message: QueryContractHistoryResponse): QueryContractHistoryResponseAminoMsg;
    toProto(message: QueryContractHistoryResponse): Uint8Array;
    toProtoMsg(message: QueryContractHistoryResponse): QueryContractHistoryResponseProtoMsg;
}