import type { DecodeCellsResult, DecodeResult } from './types.mjs'; /** * This is used to decode a complete .src.md file. */ export declare function decode(contents: string): DecodeResult; /** * This is used to decode a subset of a .src.md file. * * For example, we generate a subset of a Srcbook (1 or more cells) using AI. * When that happens, we do not have the entire .src.md contents, so we need * to ignore some aspects of it, like parsing the srcbook metadata comment. */ export declare function decodeCells(contents: string): DecodeCellsResult; //# sourceMappingURL=decoding.d.mts.map