import _m0 from "protobufjs/minimal"; import { ContractID } from "./basic_types"; export declare const protobufPackage = "proto"; /** * Info about a contract account's nonce value. * A nonce of a contract is only incremented when that contract creates another contract. */ export interface ContractNonceInfo { /** Id of the contract */ contractId: ContractID | undefined; /** The current value of the contract account's nonce property */ nonce: number; } export declare const ContractNonceInfo: { encode(message: ContractNonceInfo, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ContractNonceInfo; fromJSON(object: any): ContractNonceInfo; toJSON(message: ContractNonceInfo): unknown; create(base?: DeepPartial): ContractNonceInfo; fromPartial(object: DeepPartial): ContractNonceInfo; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends { $case: string; } ? { [K in keyof Omit]?: DeepPartial; } & { $case: T["$case"]; } : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {}; //# sourceMappingURL=contract_types.d.ts.map