export interface ConnectivityManagerInterface {
    getSSID(): string;
    getWifiNetworkId(): number;
    isWifiEnabled(): boolean;
    isWifiConnected(): boolean;
    isCellularEnabled(): boolean;
    isCellularConnected(): boolean;
    isGpsEnabled(): boolean;
    isGpsConnected(): boolean;
    hasInternet(): boolean;
    scanWifiNetworks(): Promise<string[]>;
    connectToWifiNetwork(ssid: string, password: string, milliseconds: number): Promise<boolean>;
    disconnectWifiNetwork(timeoutMs: number): Promise<boolean>;
}
