import { DemoSource, ExportFormat } from './constants'; export type Options = { demoPath: string; outputFolderPath: string; format: ExportFormat; source?: DemoSource; analyzePositions?: boolean; minify?: boolean; onStart?: (command: string) => void; onStdout?: (data: string) => void; onStderr?: (data: string) => void; onEnd?: (exitCode: number) => void; executablePath?: string; }; export declare function analyzeDemo({ demoPath, outputFolderPath, format, source, analyzePositions, minify, onStart, onStdout, onStderr, onEnd, executablePath, }: Options): Promise; export * from './constants';