export type Watermark = [number, number]; export declare class Report { constructor(opts: { exclude?: string | string[], excludeAfterRemap?: boolean, include?: string | string[], reporter: string[], reportsDirectory?: string, tempDirectory?: string, watermarks?: Partial<{ statements: Watermark; functions: Watermark; branches: Watermark; lines: Watermark; }>, omitRelative?: boolean, wrapperLength?: number, resolve?: string, all?: boolean, src?: Array, allowExternal?: boolean }) run(): Promise; }