interface ConnectionComponentResult { information: ConnectionInformation | null; } interface ConnectionInformation { effectiveType: string; downlink: number; rtt: number; saveData: boolean; } export declare function component(seed: string): Promise; export {};