import React from 'react'; import { Props } from './input-props'; interface PasswordProps extends Props { hideToggle?: boolean; } declare const passwordDefaultProps: { hideToggle: boolean; disabled: boolean; readOnly: boolean; clearable: boolean; iconClickable: boolean; width: string; size: "mini" | "small" | "medium" | "large"; status: "default" | "secondary" | "success" | "warning" | "error"; autoComplete: string; className: string; placeholder: string; initialValue: string; }; type NativeAttrs = Omit, keyof PasswordProps>; export type InputPasswordProps = PasswordProps & typeof passwordDefaultProps & NativeAttrs; declare const _default: React.ComponentType & Omit, "width" | "className" | "size" | "placeholder" | "status" | "disabled" | "autoComplete" | "readOnly" | "initialValue" | "hideToggle" | "iconClickable" | "clearable">>; export default _default;