import { type Format, type PersistConfig, type Report } from '@code-pushup/models'; type LoadedReportFormat = T extends 'json' ? Report : string; export declare function loadReport(options: Required> & { format: T; }): Promise>; export {};