import { InputHTMLAttributes, ChangeEvent } from "react";
import "@fontsource/ibm-plex-sans";
export type InputSearchProps = Omit, "size"> & {
kind: "fluid" | "default" | "expandable";
size: "small" | "medium" | "large";
label?: string;
onChange?: (event: ChangeEvent) => void;
disabled?: boolean;
readOnly?: boolean;
loading?: boolean;
onClick?: React.FormEventHandler;
value?: string;
ContainedListMenu?: boolean;
expandable?: boolean;
borderTable?: boolean;
};
export declare const Search: (props: InputSearchProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map