import { ExecutionMode } from "../../src/types/index.js"; declare const createReport: () => Promise; export declare function makeReport(options: ReportOptions, interactive?: boolean, basePath?: string): Promise; export { createReport }; interface ReportOptions { type: string; stat?: string; title: string; executionMode: ExecutionMode; description: string; }