import React, { KeyboardEvent, ReactNode } from "react"; export declare type handlerFunction = (action: string, event: KeyboardEvent) => void; export declare type options = { stopPropagation?: boolean; preventDefault?: boolean; alwaysFire?: boolean; }; declare type ShortcutsProps = { name: string; handler: handlerFunction; children: ReactNode; global?: boolean; headless?: boolean; tabIndex?: number; }; declare const _default: React.ForwardRefExoticComponent>; export default _default;