import { BinaryReader, BinaryWriter } from "../../../binary"; export declare const protobufPackage = "cosmos.mint.v1beta1"; /** Minter represents the minting state. */ export interface Minter { /** current annual inflation rate */ inflation: string; /** current annual expected provisions */ annualProvisions: string; } /** Minter represents the minting state. */ export interface MinterSDKType { inflation: string; annual_provisions: string; } /** Params holds parameters for the mint module. */ export interface Params { /** type of coin to mint */ mintDenom: string; /** maximum annual change in inflation rate */ inflationRateChange: string; /** maximum inflation rate */ inflationMax: string; /** minimum inflation rate */ inflationMin: string; /** goal of percent bonded atoms */ goalBonded: string; /** expected blocks per year */ blocksPerYear: bigint; } /** Params holds parameters for the mint module. */ export interface ParamsSDKType { mint_denom: string; inflation_rate_change: string; inflation_max: string; inflation_min: string; goal_bonded: string; blocks_per_year: bigint; } export declare const Minter: { typeUrl: string; encode(message: Minter, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Minter; fromJSON(object: any): Minter; toJSON(message: Minter): unknown; fromPartial & { inflation?: string; annualProvisions?: string; } & Record, never>>(object: I): Minter; }; 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 & { mintDenom?: string; inflationRateChange?: string; inflationMax?: string; inflationMin?: string; goalBonded?: string; blocksPerYear?: bigint; } & Record, never>>(object: I): Params; };