import { KeyboardEventHandler } from 'react'; interface UseActionHandlersResult { onKeyDown: KeyboardEventHandler; } /** * Emulates behaviour of system controls, that respond to Enter and Spacebar * @param callback */ export declare function useActionHandlers(callback?: (...args: any[]) => any): UseActionHandlersResult; export {};