export type SuperTableShortCutsOptions = { /** * Shortcut keys */ keys: string[]; /** * Callback function that will be called when the shortcut is pressed */ callback: (e: KeyboardEvent) => void; /** * Description of the shortcut that will be displayed in the help dialog */ description: string; /** * If passed, shortcut will be available only when user hovers over the table row with this id */ rowId?: string | number; /** * If passed, shortcut will be available only when user makes multiple selections in the table */ bulkMode?: boolean; }; export default function SuperTableShortcuts(): any; //# sourceMappingURL=SuperTableShortcuts.d.ts.map