import { IReportBody } from './report-body';
export interface IReport {
    readonly body: null | IReportBody;
    readonly type: string;
    readonly url: string;
}
//# sourceMappingURL=report.d.ts.map