import { type Builder, type Cell, type Slice } from '@ton/core'; export interface SwapFees { kind: 'dedust.cpmm.v2.SwapFees'; isX: boolean; lpFee: bigint; creatorFee: bigint; protocolFee: bigint; partnerFee: bigint; referrerFee: bigint; } export declare namespace SwapFees { type Input = Omit; const create: (input: Input) => SwapFees; const load: (source: Slice) => SwapFees; const store: (swapFees: SwapFees) => (to: Builder) => void; const toCell: (swapFees: SwapFees) => Cell; const fromCell: (cell: Cell) => SwapFees; }