import React from "react"; import { IconsNames } from "../../atoms"; import { InputProps } from "../../molecules/input"; export interface InputFieldProps extends InputProps { onChangeText?: (value: string) => void; label?: string | React.ReactNode; caption?: string | React.ReactNode; beforeLabelIcon?: IconsNames; afterLabelIcon?: IconsNames; tip?: string; maxLength?: number; error?: string; className?: string; inputClassName?: string; name?: string; key?: string; isTemporary?: boolean; borderRadius?: number[] | string; style?: React.CSSProperties; wrapperStyle?: React.CSSProperties; required?: boolean; suffix?: React.ReactNode; prefix?: React.ReactNode; addonBefore?: React.ReactNode; addonAfter?: React.ReactNode; addonBeforeClassName?: string; addonAfterClassName?: string; size?: "normal" | "small"; onBlur?: () => void; onFocus?: () => void; } declare const InputField: React.ForwardRefExoticComponent>; export { InputField }; //# sourceMappingURL=index.d.ts.map