import { InputProps } from '../Input'; export interface DebouncedInputProps extends Omit { delay?: number; onChange: (value: string) => void; value: string; } /** * DebouncedInput component * @description The DebouncedInput component is used to create an input that debounces the value before calling the onChange callback, useful for search inputs * @returns React.FC */ export declare const DebouncedInput: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=DebouncedInput.d.ts.map