/** * Universal example runner utility * Provides common functionality for running examples */ import { ReportComponentDefinition } from '../types'; export interface ExampleRunnerOptions { outputFilename?: string; outputDir?: string; verbose?: boolean; } /** * Run an example and generate a document * @param example - The example definition to run * @param options - Options for running the example */ export declare function runExample(example: ReportComponentDefinition, options?: ExampleRunnerOptions): Promise; //# sourceMappingURL=exampleRunner.d.ts.map