import type { DevicesListDeviceProvidersParams } from '@seamapi/http/connect'; import type { DeviceProvider } from '@seamapi/types/connect'; import type { UseSeamQueryResultLegacy } from '../../../lib/seam/use-seam-query-result.js'; export type UseDeviceProvidersParams = DevicesListDeviceProvidersParams; export type UseDeviceProvidersData = DeviceProvider[]; export declare function useDeviceProviders(params?: UseDeviceProvidersParams): UseSeamQueryResultLegacy<'deviceProviders', UseDeviceProvidersData>;