/** * @deprecated Use {@link useStatus} instead. * * Custom hook that provides access to the current status of PowerSync. * @returns The PowerSync Database status. * @example * const Component = () => { * const status = usePowerSyncStatus(); * * return
* status.connected ? 'wifi' : 'wifi-off' *
* }; */ export declare const usePowerSyncStatus: () => import("@powersync/common").SyncStatus;