import { Builder, type Cell, Slice } from '@ton/core'; import { Optional } from '../../../core'; export interface Init { kind: 'dedust.cpmm.v2.Init'; queryId: bigint; customPayload: Cell | null; } export declare namespace Init { const TAG = 3733193422; type Input = Optional, 'queryId' | 'customPayload'>; const create: (input?: Input) => Init; const load: (source: Slice) => Init; const store: (message: Init) => (to: Builder) => void; const toCell: (message: Init) => Cell; const createCell: (input?: Input) => Cell; }