import * as React from 'react'; import { CustomEventHandler } from '../../commonTypes'; import { PasswordProps } from './types'; export declare const createChangeHandler: (props: PasswordProps, setValue: React.Dispatch>) => CustomEventHandler>; export declare const createClearHandler: (props: PasswordProps, setValue: React.Dispatch>) => CustomEventHandler>; export declare const createBlurHandler: (props: PasswordProps, setFocused: React.Dispatch>, validate: () => boolean) => (event: React.FocusEvent) => void; export declare const createFocusHandler: (props: PasswordProps, isValid: boolean, setFocused: React.Dispatch>) => (event: React.FocusEvent) => void; export declare const createKeyDownHandler: (props: PasswordProps) => (event: React.KeyboardEvent) => void; export declare const createResetHandler: (props: PasswordProps, setValue: React.Dispatch>) => () => void;