export declare const TEXTBOX_CLASSNAME = "k-textbox";
declare const states: ("required" | "loading" | "focus" | "invalid" | "disabled" | "readonly" | "hover" | "valid")[];
declare const options: {
    size: ("small" | "medium" | "large")[];
    rounded: ("small" | "medium" | "full" | "large")[];
    fillMode: ("flat" | "outline" | "solid")[];
};
export type KendoTextboxOptions = {
    size?: (typeof options.size)[number] | null;
    rounded?: (typeof options.rounded)[number] | null;
    fillMode?: (typeof options.fillMode)[number] | null;
};
export type KendoTextboxProps = KendoTextboxOptions & {
    prefix?: React.JSX.Element;
    suffix?: React.JSX.Element;
    separators?: boolean;
    type?: string;
    value?: string;
    placeholder?: string;
    autocomplete?: string;
    showClearButton?: boolean;
    showValidationIcon?: boolean;
};
export type KendoTextboxState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const Textbox: {
    (props: KendoTextboxProps & KendoTextboxState & Omit<React.HTMLAttributes<HTMLSpanElement>, "prefix">): import("react/jsx-runtime").JSX.Element;
    states: ("required" | "loading" | "focus" | "invalid" | "disabled" | "readonly" | "hover" | "valid")[];
    options: {
        size: ("small" | "medium" | "large")[];
        rounded: ("small" | "medium" | "full" | "large")[];
        fillMode: ("flat" | "outline" | "solid")[];
    };
    className: string;
    defaultOptions: {
        showClearButton: boolean;
        showValidationIcon: boolean;
        size: "medium";
        rounded: "medium";
        fillMode: "solid";
        separators: boolean;
    };
};
export default Textbox;
