import { type Builder, type DictionaryValue, type Slice } from '@ton/core'; import { Asset } from './Asset'; export interface RewardConfig { kind: 'dedust.cpmm.v2.RewardConfig'; asset: Asset; maxDuration: number; } export declare namespace RewardConfig { type Input = Omit; const create: (input: Input) => RewardConfig; const load: (source: Slice) => RewardConfig; const store: (rewardConfig: RewardConfig) => (to: Builder) => void; const createDictionaryValue: () => DictionaryValue; }