import { InputPasswordProps as UnStyledInputPasswordProps } from '@sheinx/base'; import { GetWithFieldProps } from '../hooks/use-field-common'; export interface BasePasswordProps extends Omit { /** * @cn 输入值 * @en Input value */ value?: string; } export type InputPasswordProps = GetWithFieldProps;