import { Address, Cell } from '@ton/core'; export declare type WalletConfig = { balance: bigint; ownerAddress: Address; minterAddress: Address; }; export declare function walletConfigToCell(config: WalletConfig): Cell; export declare const jWalletOpcodes: { readonly transfer: 260734629; readonly internalTransfer: 395134233; readonly burn: 1499400124; }; export declare const proxyWalletOpcodesV2: { readonly resetGas: 701638965; readonly tonTransfer: 32736093; readonly transfer: 260734629; readonly internalTransfer: 395134233; readonly burn: 1499400124; };