import { type Builder, type Cell, type Slice } from '@ton/core'; import { ExtendedPayoutConfig } from '../types'; import { Optional } from '../../../core'; export interface PayNative { kind: 'dedust.cpmm.v2.PayNative'; queryId: bigint; amount: bigint; paymentPayload: Cell; payoutConfig: ExtendedPayoutConfig; } export declare namespace PayNative { const TAG = 2779237368; type Input = Optional, 'queryId' | 'payoutConfig'>; const create: (input: Input) => PayNative; const load: (source: Slice) => PayNative; const store: (payNative: PayNative) => (to: Builder) => void; const createCell: (input: Input) => Cell; }