import { BinaryReader, BinaryWriter } from "../../../binary"; 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 interface ParamsProtoMsg { typeUrl: "/atomone.photon.v1.Params"; value: Uint8Array; } /** Params defines the parameters for the x/photon module. */ export interface ParamsAmino { /** Allow to mint photon or not */ mint_disabled?: 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. */ tx_fee_exceptions?: string[]; } export interface ParamsAminoMsg { type: "/atomone.photon.v1.Params"; value: ParamsAmino; } export declare const Params: { typeUrl: string; encode(message: Params, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: Partial): Params; fromAmino(object: ParamsAmino): Params; toAmino(message: Params): ParamsAmino; fromAminoMsg(object: ParamsAminoMsg): Params; fromProtoMsg(message: ParamsProtoMsg): Params; toProto(message: Params): Uint8Array; toProtoMsg(message: Params): ParamsProtoMsg; };