import { type Address, type Builder, type Slice } from '@ton/core'; export interface ClaimReward { kind: 'dedust.cpmm.v2.ClaimReward'; queryId: bigint; rewardIndex: number; excessesTo: Address; } export declare namespace ClaimReward { const TAG = 2426395493; type Input = Omit; const create: (input: Input) => ClaimReward; const load: (source: Slice) => ClaimReward; const store: (message: ClaimReward) => (to: Builder) => void; }