import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "ibc.lightclients.wasm.v1"; /** GenesisState defines 08-wasm's keeper genesis state */ export interface GenesisState { /** uploaded light client wasm contracts */ contracts: Contract[]; } /** Contract stores contract code */ export interface Contract { /** contract byte code */ codeBytes: Uint8Array; } export declare const GenesisState: { encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; create(base?: DeepPartial): GenesisState; fromPartial(object: DeepPartial): GenesisState; }; export declare const Contract: { encode(message: Contract, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Contract; fromJSON(object: any): Contract; toJSON(message: Contract): unknown; create(base?: DeepPartial): Contract; fromPartial(object: DeepPartial): Contract; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};