import { InputHTMLAttributes } from 'react';
export declare function DebouncedInput({ value: initialValue, onChange, debounceMs, // This is the wait time, not the function
...props }: {
value: string | number;
onChange: (value: string | number) => void;
debounceMs?: number;
} & Omit, 'onChange'>): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=debounced-input.d.ts.map