import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.base.v1beta1"; /** * Coin defines a token with a denomination and an amount. * * NOTE: The amount field is an Int which implements the custom method * signatures required by gogoproto. */ export interface Coin { denom: string; amount: string; } /** * DecCoin defines a token with a denomination and a decimal amount. * * NOTE: The amount field is an Dec which implements the custom method * signatures required by gogoproto. */ export interface DecCoin { denom: string; amount: string; } /** IntProto defines a Protobuf wrapper around an Int object. */ export interface IntProto { int: string; } /** DecProto defines a Protobuf wrapper around a Dec object. */ export interface DecProto { dec: string; } export declare const Coin: { encode(message: Coin, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Coin; fromJSON(object: any): Coin; toJSON(message: Coin): unknown; fromPartial, never>>(object: I): Coin; }; export declare const DecCoin: { encode(message: DecCoin, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DecCoin; fromJSON(object: any): DecCoin; toJSON(message: DecCoin): unknown; fromPartial, never>>(object: I): DecCoin; }; export declare const IntProto: { encode(message: IntProto, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): IntProto; fromJSON(object: any): IntProto; toJSON(message: IntProto): unknown; fromPartial, never>>(object: I): IntProto; }; export declare const DecProto: { encode(message: DecProto, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DecProto; fromJSON(object: any): DecProto; toJSON(message: DecProto): unknown; fromPartial, never>>(object: I): DecProto; }; 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 {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};