/** * Custom hook to detect ESP devices in SoftAP mode by monitoring the current network SSID. * * @param scanInterval - Interval in milliseconds to poll the current network SSID * @param devicePrefix - Prefix to match against the current SSID * @returns deviceName when a matching SSID is found, the raw currentNetworkSSID, and scan controls * * @note This hook requires location permissions to work correctly. Make sure to request * and handle location permissions before using this hook. */ export declare function useSoftAPDevice(scanInterval: number, devicePrefix: string): { deviceName: string | undefined; currentNetworkSSID: string | undefined; startScanning: () => void; stopScanning: () => void; }; //# sourceMappingURL=useSoftAPDevice.d.ts.map