import type { NoiseSensorsNoiseThresholdsListParams } from '@seamapi/http/connect'; import type { NoiseThreshold } from '@seamapi/types/connect'; import type { UseSeamQueryResultLegacy } from '../../../lib/seam/use-seam-query-result.js'; export type UseNoiseThresholdsParams = NoiseSensorsNoiseThresholdsListParams; export type UseNoiseThresholdsData = NoiseThreshold[]; export declare function useNoiseThresholds(params: UseNoiseThresholdsParams): UseSeamQueryResultLegacy<'noiseThresholds', UseNoiseThresholdsData>;