import { default as React, InputHTMLAttributes, ChangeEvent } from 'react';
export type InputSearchProps = Omit, "size"> & {
kind?: "fluid" | "default";
size?: "small" | "medium" | "large";
Title?: string;
onChange?: (event: ChangeEvent) => void;
disabled?: boolean;
readOnly?: boolean;
loading?: boolean;
onClick?: React.FormEventHandler;
value?: string;
};
export declare const Search: (props: InputSearchProps) => import("react/jsx-runtime").JSX.Element;