import * as _ton_ton from '@ton/ton'; import { ContractProvider } from '@ton/ton'; import { AddressType } from '../../types.js'; import { Contract } from './Contract.js'; declare class JettonMinter extends Contract { getWalletAddress(provider: ContractProvider, ownerAddress: AddressType): Promise<_ton_ton.Address>; getJettonData(provider: ContractProvider): Promise<{ totalSupply: bigint; canIncSupply: boolean; adminAddress: _ton_ton.Address | null; contentRaw: _ton_ton.Cell; jettonWalletCode: _ton_ton.Cell; }>; } export { JettonMinter };