import { Duration } from "../../../google/protobuf/duration"; import * as _m0 from "protobufjs/minimal"; import { DeepPartial, Long } from "@osmonauts/helpers"; export interface Params { /** * minted_denom is the denomination of the coin expected to be minted by the * minting module. Pool-incentives module doesn’t actually mint the coin * itself, but rather manages the distribution of coins that matches the * defined minted_denom. */ minted_denom: string; } export interface LockableDurationsInfo { lockable_durations: Duration[]; } export interface DistrInfo { total_weight: string; records: DistrRecord[]; } export interface DistrRecord { gauge_id: Long; weight: 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(object: DeepPartial): Params; }; export declare const LockableDurationsInfo: { encode(message: LockableDurationsInfo, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): LockableDurationsInfo; fromJSON(object: any): LockableDurationsInfo; toJSON(message: LockableDurationsInfo): unknown; fromPartial(object: DeepPartial): LockableDurationsInfo; }; export declare const DistrInfo: { encode(message: DistrInfo, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DistrInfo; fromJSON(object: any): DistrInfo; toJSON(message: DistrInfo): unknown; fromPartial(object: DeepPartial): DistrInfo; }; export declare const DistrRecord: { encode(message: DistrRecord, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DistrRecord; fromJSON(object: any): DistrRecord; toJSON(message: DistrRecord): unknown; fromPartial(object: DeepPartial): DistrRecord; };