UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

8 lines 435 B
import React from 'react'; import type { BaseInputProps } from './input'; import type { PasswordProps } from 'antd/lib/input'; import type { InputRef } from 'antd/lib/input'; export type PasswordInputProps = BaseInputProps & Pick<PasswordProps, 'visibilityToggle'>; declare const Password: React.ForwardRefExoticComponent<PasswordInputProps & React.RefAttributes<InputRef>>; export { Password, }; //# sourceMappingURL=password.d.ts.map