export declare enum ConnectionMethodPreference { BLUETOOTH = "bluetooth", WIFI = "wifi" } export declare const getConnectionMethodPreference: () => ConnectionMethodPreference; export declare const setConnectionMethodPreference: (method: ConnectionMethodPreference) => void; export declare const useConnectionMethodPreference: () => readonly [ConnectionMethodPreference, (nextMethod: ConnectionMethodPreference) => void];