///
import type { FieldMessageContainerExtension } from "../FormMessageContainer";
import type { PasswordProps } from "./Password";
/**
* @remarks \@since 2.5.0
*/
export declare type PasswordWithMessageProps = FieldMessageContainerExtension;
/**
* This component is a simple wrapper for the `Password` and `FormMessage`
* components that should be used along with the `useTextField` hook to
* conditionally show help and error messages with a `Password`.
*
* Simple example:
*
* ```ts
* const [value, fieldProps] = useTextField({
* id: "field-id",
* required: true,
* minLength: 10,
* });
*
* return (
*
* );
* ```
*
* Note: Unlike the `TextFieldWithMessage` and `TextAreaWithMessage`, the error
* icon will do nothing for this component unless the `disableVisibility` prop
* is enabled.
*
* @remarks \@since 2.5.0
*/
export declare const PasswordWithMessage: import("react").ForwardRefExoticComponent | undefined;
}) | undefined;
messageContainerProps?: (import("react").HTMLAttributes & {
ref?: import("react").Ref | undefined;
}) | undefined;
} & import("react").RefAttributes>;