export declare enum State { READY = 0, FAIL = 1, PENDING = 2 } type Stats = { lhrSlim: { id: string; score: number; }[]; }; export declare class LighthouseStats { state: State; data: Stats; constructor(state: State, data?: Stats); isPending(): boolean; isFailed(): boolean; isReady(): boolean; getScoreOfMetric(metric: string): number; getStateColorByMetric(metric: string): string; } export {};