import { Builder, Slice } from '@ton/core'; export interface FundReward { kind: 'dedust.cpmm.v2.FundReward'; till: number; } export declare namespace FundReward { const TAG = 783842809; type Input = Omit; const create: (input: Input) => FundReward; const load: (source: Slice) => FundReward; const store: (payload: FundReward) => (to: Builder) => void; }