import React from 'react'; interface TPasswordInputInterface extends Omit, 'size' | 'type' | 'ref'> { value: string; placeholder?: string; size?: 'default' | 'small'; icon?: 'HideIcon' | 'ShowIcon' | 'EditIcon'; errorText?: string; checkValid?: (isValid: boolean) => void; extraClass?: string; onChange(e: React.ChangeEvent): void; } export declare const PasswordInput: React.FC; export {};