import { FocusEvent, KeyboardEvent } from 'react'; export declare type ContextValue = { onBlur?(value: string): void; onChange?(value: string): void; onFocus?(evt: FocusEvent): void; onKeyDown?(evt: KeyboardEvent): void; }; export declare const EventHandlersContext: import("react").Context;