@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
8 lines (7 loc) • 391 B
TypeScript
import { BasicInputProps } from "./BasicInput";
export declare const VuiPasswordInput: import("react").ForwardRefExoticComponent<BasicInputProps & {
value?: string | undefined;
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
maxLength?: number | undefined;
isPasswordVisible?: boolean | undefined;
} & import("react").RefAttributes<HTMLInputElement | null>>;