import { type BuilderWriter } from './writer'; import { type Slice } from 'ton-core'; export type OnchainContentConfig = { type: 'onchain'; data: Record; }; export type OffChainContentConfig = { type: 'offchain'; uri: string; }; export type FullContentConfig = OnchainContentConfig | OffChainContentConfig; export declare function storeFullContentConfig(config: FullContentConfig): BuilderWriter; export declare function loadFullContentConfig(slice: Slice, attributes?: string[]): FullContentConfig; //# sourceMappingURL=config.d.ts.map