export declare const enum ReportFormat {
    PDF = "PDF",
    CSV = "CSV",
    XML = "XML",
    Word = "WORDOPENXML",
    Excel = "EXCELOPENXML",
    HTML5 = "HTML 5"
}
export interface ReportConfig {
    id: string;
    sessionId?: string;
    controlId?: string;
    reportId: string;
    format: ReportFormat;
    parameterName: string;
    table: string;
}
export declare const generateReport: (config: ReportConfig) => Promise<string>;
