export interface GenerateComponentDriverOptions { /** Absolute paths to every discovered `*.component.ts` file for this build. */ files: readonly string[]; } /** * Generate the component driver module's full TypeScript source. Written to * a tmp file and bundled (`../../discovery/sandbox/bundle.ts`'s `bundleDriver` * — generic, reused as-is) before being handed to a sandboxed child — never * executed directly by the parent process. */ export declare function generateComponentDriverSource(options: GenerateComponentDriverOptions): string; //# sourceMappingURL=driver.d.ts.map