import { FileContents, LineAnnotation } from "../types.js"; import { FileOptions } from "../components/File.js"; //#region src/ssr/preloadFile.d.ts type PreloadFileOptions = { file: FileContents; options?: FileOptions; annotations?: LineAnnotation[]; }; interface PreloadedFileResult { file: FileContents; options?: FileOptions; annotations?: LineAnnotation[]; prerenderedHTML: string; } declare function preloadFile({ file, options, annotations }: PreloadFileOptions): Promise>; //#endregion export { PreloadFileOptions, PreloadedFileResult, preloadFile }; //# sourceMappingURL=preloadFile.d.ts.map