import { InputProps } from 'antd';
export interface IDebounceInputProps extends InputProps {
    delay?: number;
}
