import { DocumentActionDescription } from '@sanity/base'; import React from 'react'; export interface KeyboardShortcutResponderProps { actionsBoxElement?: HTMLElement | null; activeIndex: number; currentMinWidth?: number; flex: number; id: string; minWidth: number; onActionStart: (index: number) => void; rootRef: React.Ref; states: DocumentActionDescription[]; } export interface DocumentActionShortcutsProps { actionsBoxElement?: HTMLElement | null; currentMinWidth?: number; debug?: boolean; flex: number; minWidth: number; rootRef: React.Ref; } export declare const DocumentActionShortcuts: React.MemoExoticComponent<(props: DocumentActionShortcutsProps & React.HTMLProps) => React.JSX.Element | null>; //# sourceMappingURL=DocumentActionShortcuts.d.ts.map