import * as React from "react";
declare const textFieldVariants: (props?: ({
    size?: "medium" | "large" | "small" | null | undefined;
    validationState?: "none" | "positive" | "negative" | null | undefined;
    isDisabled?: boolean | null | undefined;
    isReadOnly?: boolean | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export interface TextFieldProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size" | "prefix"> {
    label?: string;
    helperText?: string;
    errorText?: string;
    successText?: string;
    size?: "small" | "medium" | "large";
    validationState?: "none" | "positive" | "negative";
    isDisabled?: boolean;
    isLoading?: boolean;
    isRequired?: boolean;
    isOptional?: boolean;
    prefix?: React.ReactNode;
    suffix?: React.ReactNode;
    showClearButton?: boolean;
    onClear?: () => void;
    containerClassName?: string;
    labelClassName?: string;
    inputClassName?: string;
    infoHeading?: string;
    infoDescription?: string;
    LinkComponent?: React.ReactNode;
    linkText?: string;
    linkHref?: string;
    onLinkClick?: (e: React.MouseEvent<HTMLAnchorElement>) => void;
}
declare const TextField: React.ForwardRefExoticComponent<TextFieldProps & React.RefAttributes<HTMLInputElement>>;
export { TextField, textFieldVariants };
//# sourceMappingURL=TextField.d.ts.map