import * as React from 'react'; import TooltipOptions from '../tooltip/tooltipoptions'; import { CSSTransitionProps } from '../csstransition'; type PasswordHeaderType = React.ReactNode | ((props: PasswordProps) => React.ReactNode); type PasswordFooterType = React.ReactNode | ((props: PasswordProps) => React.ReactNode); type PasswordContentType = React.ReactNode | ((props: PasswordProps) => React.ReactNode); interface PasswordIconParams { onClick(): void; className: string; element: JSX.Element; props: PasswordProps; } type PasswordIconType = React.ReactNode | ((e: PasswordIconParams) => React.ReactNode); type PasswordAppendToType = 'self' | HTMLElement | undefined | null; export interface PasswordProps extends Omit, HTMLInputElement>, 'onInput'|'ref'> { id?: string; inputId?: string; inputRef?: React.Ref; promptLabel?: string; weakLabel?: string; mediumLabel?: string; strongLabel?: string; mediumRegex?: string; strongRegex?: string; feedback?: boolean; toggleMask?: boolean; appendTo?: PasswordAppendToType; header?: PasswordHeaderType; content?: PasswordContentType; footer?: PasswordFooterType; icon?: PasswordIconType; tooltip?: string; tooltipOptions?: TooltipOptions; style?: object; className?: string; inputStyle?: object; inputClassName?: string; panelStyle?: object; panelClassName?: string; transitionOptions?: CSSTransitionProps; onInput?(event: React.FormEvent, validatePattern: boolean): void; onShow?(): void; onHide?(): void; } export declare class Password extends React.Component { }