import type { ReactElement } from "react"; import type { FilterChildProps } from "./types"; /** * Custom hook for debouncing values */ export declare function useDebounce(value: T, delay: number): T; /** * Type guard to check if a child is a Filter component. * Uses displayName instead of direct type comparison for better compatibility * with bundlers, HOCs, and SSR/RSC contexts. */ export declare function isFilter(child: ReactElement): child is ReactElement; //# sourceMappingURL=utils.d.ts.map