import { Chunk } from "webpack"; import { Project, ProjectAppFile } from "../../interfaces/project.interfaces"; interface RenderDocumentOptions { project: Project; chunk: Chunk; outdir: string; } export declare const renderDocument: ({ project, chunk, outdir, }: RenderDocumentOptions) => Promise; /** * @deprecated "use renderDocument instead" */ export declare const _renderDocument: (project: Project, appDocument: ProjectAppFile, chunk: Chunk) => Promise; export {};