interface Params { server?: string; urls: string[]; assertions?: any; } /** * Some values, we took from the default lighthouse config * throttling mobileSlow4G: https://github.com/GoogleChrome/lighthouse/blob/master/lighthouse-core/config/constants.js#L22 */ declare const lhConfig: ({ urls, server, assertions }: Params) => { ci: { collect: { url: string[]; }; assert: { preset: string; assertions: any; }; upload: { target: string; urlReplacementPatterns: string; }; }; }; export default lhConfig; //# sourceMappingURL=index.d.ts.map