export declare const SuccessIcon = "";
export declare const ErrorIcon = "";
export interface TextFieldProps {
label?: string;
labelFontSize?: number;
labelFontWeight?: string;
labelFontFamily?: string;
labelFontDecoration?: string;
labelColor?: string;
placeholder?: string;
placeholderFontSize?: number;
placeholderFontWeight?: string;
placeholderFontFamily?: string;
placeholderFontDecoration?: string;
placeholderColor?: string;
type?: string;
fontSize?: number;
fontWeight?: string;
fontFamily?: string;
fontDecoration?: string;
color?: string;
multline?: number;
leftIcon?: string;
leftIconSize?: number;
leftIconColor?: string;
rightIcon?: string;
rightIconSize?: number;
rightIconColor?: string;
backgroundColor?: string;
backgroundOpacity?: string;
borderColor?: string;
borderWidth?: number;
borderRadius?: number;
borderType?: string;
boxShadow?: string;
supportingText?: string;
supportingTextFontSize?: number;
supportingTextFontWeight?: string;
supportingTextFontFamily?: string;
supportingTextFontDecoration?: string;
supportingTextColor?: string;
onComplete?: () => void;
isDisabled?: boolean;
}
declare const WOITextField: (props: TextFieldProps) => import("react/jsx-runtime").JSX.Element;
export default WOITextField;