import { type FC } from 'react'; import type { BasicInputProps } from './BasicInput'; export type PasswordInputProps = Omit, 'type'>; export declare const PasswordInput: FC;