import React from "react"; import { TextInputProps } from "../textbox/__internal__/__next__"; export interface PasswordProps extends Omit { /** When `true` input `type` is `password` and text is obscured. */ forceObscurity?: boolean; /** @deprecated `characterLimit` has been deprecated and will be removed in a future release. */ characterLimit?: number; /** @deprecated `prefix` has been deprecated and will be removed in a future release. */ prefix?: string; } export declare const Password: ({ id, disabled, forceObscurity, inputIcon, size, ...rest }: PasswordProps) => React.JSX.Element; export default Password;