import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.evm.precisebank.v1"; /** GenesisState defines the precisebank module's genesis state. */ export interface GenesisState { /** balances is a list of all the balances in the precisebank module. */ balances: FractionalBalance[]; /** * remainder is an internal value of how much extra fractional digits are * still backed by the reserve, but not assigned to any account. */ remainder: string; } /** FractionalBalance defines the fractional portion of an account balance */ export interface FractionalBalance { /** address is the address of the balance holder. */ address: string; /** * amount indicates amount of only the fractional balance owned by the * address. FractionalBalance currently only supports tracking 1 single asset, * e.g. fractional balances of uatom. */ amount: string; } 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 FractionalBalance: { encode(message: FractionalBalance, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): FractionalBalance; fromJSON(object: any): FractionalBalance; toJSON(message: FractionalBalance): unknown; create(base?: DeepPartial): FractionalBalance; fromPartial(object: DeepPartial): FractionalBalance; }; 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 {};