UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

13 lines (12 loc) 680 B
export declare const VuiPasswordInput: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref" | "size" | "autoComplete"> & { isInvalid?: boolean | undefined; size?: "s" | "m" | "l" | undefined; fullWidth?: boolean | undefined; autoComplete?: string | boolean | undefined; isSelected?: boolean | undefined; } & { value?: string | undefined; onChange: (event: React.ChangeEvent<HTMLInputElement>) => void; maxLength?: number | undefined; isPasswordVisible?: boolean | undefined; } & import("react").RefAttributes<HTMLInputElement | null>>;