UNPKG

@navinc/base-react-components

Version:
11 lines (10 loc) 586 B
/// <reference types="react" /> import { Input } from './input.js'; import { InferComponentProps } from './types.js'; type PasswordInputProps = { isPasswordShown?: boolean; passwordStrengthScore: number; requiredPasswordScore: number; } & Omit<InferComponentProps<typeof Input>, 'childrenBeforeErrors'>; export declare const PasswordInput: import("styled-components").StyledComponent<({ isPasswordShown, passwordStrengthScore, requiredPasswordScore, className, ...props }: PasswordInputProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>; export {};