import { type Slice } from 'ton-core'; import { type BuilderWriter } from './writer'; export type OffChainContent = { uri: string; }; export declare const OFF_CHAIN_FIRST_BYTE = 1; /** * Store `0x01` prefix byte and string tail * offchain#01 uri:Text = FullContent; */ export declare function storeOffChainContent(source: OffChainContent): BuilderWriter; /** * Read first prefix byte. If prefix is `0x01` load string tail * offchain#01 uri:Text = FullContent; */ export declare function loadOffChainContent(slice: Slice): OffChainContent; //# sourceMappingURL=offChain.d.ts.map