import { SearchProps } from 'antd/es/input';
import { FC } from 'react';
import { INPUT_SEARCH } from '../../../Types';
export interface IInputSearch {
    ctype: typeof INPUT_SEARCH;
    props: SearchProps;
}
declare const InputSearch: FC<IInputSearch>;
export default InputSearch;
