UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

8 lines (7 loc) 607 B
import React, { ForwardedRef } from 'react'; import { IInputPasswordStandAlone } from './types/inputPassword'; export declare const InputPasswordStandAloneComponent: (props: IInputPasswordStandAlone, ref: ForwardedRef<HTMLInputElement | undefined>) => JSX.Element; export declare const InputPasswordStandAlone: React.ForwardRefExoticComponent<Omit<import("..").IInputStandAlone, "error" | "disabled" | "styles" | "variant" | "inputId" | "formatNumber" | "locale"> & { styles: import("./types").InputPasswordStylesProps; inputVariant?: string; } & React.RefAttributes<HTMLInputElement | undefined>>;