import { File } from '../file'; export declare class CoberturaItem { path: string; rate: number; uncovered: number[]; constructor(path: string, rate?: number, uncovered?: number[]); assign(payload: Partial>): this; static build(path: string, provided?: Partial>): CoberturaItem; } export declare class Cobertura extends File { rate: number; uncovered: number[]; timestamp: number; items: CoberturaItem[]; assign(payload: Partial>): this; parse(): this; refresh(): Promise; static build(location: string): Promise; } //# sourceMappingURL=index.d.ts.map