import React from 'react';
import { IInputSearch } from './types/inputSearch';
declare const InputSearch: <V extends string | unknown>(props: React.PropsWithChildren<IInputSearch<V>> & {
    ref?: React.ForwardedRef<HTMLInputElement | undefined>;
}) => JSX.Element;
export { InputSearch };
