import networks from './networks'; declare const platforms: { ios: (throttling: import("lighthouse/types/lhr/settings").ThrottlingSettings) => Partial; android: (throttling: import("lighthouse/types/lhr/settings").ThrottlingSettings) => Partial; desktop: (throttling: import("lighthouse/types/lhr/settings").ThrottlingSettings) => Partial; }; export type LightHouseOptions = { url: string; platform: keyof typeof platforms; network: keyof typeof networks; }; export declare function execute(options: LightHouseOptions): Promise<{ json: string; html: string; }>; export {};