import { type Builder, type Slice } from '@ton/core'; export type Q120X120 = { kind: 'dedust.cpmm.v2.Q120X120'; value: bigint; }; export declare namespace Q120X120 { const create: (input: bigint) => Q120X120; const load: (source: Slice) => Q120X120; const store: (value: Q120X120) => (to: Builder) => void; const sub: (x: Q120X120, y: Q120X120) => Q120X120; const mul: (x: Q120X120, y: bigint) => bigint; const zero: () => Q120X120; }