import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "atomone.photon.v1"; /** Params defines the parameters for the x/photon module. */ export interface Params { /** Allow to mint photon or not */ mintDisabled: boolean; /** * tx_fee_exceptions holds the msg type urls that are allowed to use some * different tx fee coins than photon. * A wildcard "*" can be used to allow all transactions to use any fee denom. */ txFeeExceptions: string[]; } export declare const Params: { encode(message: Params, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial, never>) | undefined; } & Record, never>>(object: I): Params; }; 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 {};