/** * Triggers actions on specific keyboard events. * Use appropriate and accessible design patterns for keyboard interactions. * * See https://www.w3.org/WAI/ARIA/apg/patterns/ */ declare const callOnKeyboardEvent: (callback: any, options?: { args?: unknown[]; canPreventDefault?: boolean; canStopPropagation?: boolean; keys?: string[]; }) => (event: any) => void; export { callOnKeyboardEvent };