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