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