/** * It returns a function that takes a KeyboardEvent and dispatches a click event on the currentTarget if the key is Enter. * * @returns {(e: KeyboardEvent) => void } A function that takes a KeyboardEvent and dispatches a click event on the currentTarget. */ export declare function createEnterKeyHandlerToTriggerClick(): (e: KeyboardEvent) => void;