import { type Slice } from 'ton-core'; import { type BuilderWriter } from './writer'; import { type OnChainContent } from './onChain'; import { type OffChainContent } from './offChain'; export type FullContent = OnChainContent | OffChainContent; /** * Store NFT contract content * @see https://github.com/ton-blockchain/TEPs/blob/master/text/0064-token-data-standard.md */ export declare function storeFullContent(content: FullContent): BuilderWriter; /** * Load NFT contract content * @see https://github.com/ton-blockchain/TEPs/blob/master/text/0064-token-data-standard.md */ export declare function loadFullContent(slice: Slice): FullContent; //# sourceMappingURL=index.d.ts.map