import { type LocalizedIconButtonProps } from '../icon-button'; export type ShowPasswordIconButtonProps = LocalizedIconButtonProps & { passwordVisible: boolean; }; /** * A button to toggle password visibility. * Always uses the label "Show password". * Icon and aria-pressed reflect the passwordVisible prop. * Uses the useLocale hook from LocaleProvider context to provide an accessible label * based on the current locale, or wraps with one if `locale` is provided. */ export declare const ShowPasswordIconButton: ({ passwordVisible, ...props }: ShowPasswordIconButtonProps) => import("react/jsx-runtime").JSX.Element;