import { exportDefault, exportStarFrom, importDefaultFrom } from '../../../codegen/utils'; import type { Config } from '../../../lib/config'; import type { Document } from '../../../lib/types'; export declare function moduleStatments(config: Config): { importStatement: typeof importDefaultFrom; exportDefaultStatement: typeof exportDefault; exportStarStatement: typeof exportStarFrom; }; export declare function generateStaticRuntimes({ config }: { config: Config; }): Promise; export declare function generatePluginRuntimes({ config, docs, }: { config: Config; docs: Document[]; }): Promise;