import { type ValueOf } from '@deephaven/utils'; import { type TabEvent } from '@deephaven/dashboard'; export type TabEventType = ValueOf; export interface TabEventMap extends Record void> { [TabEvent.focus]: () => void; [TabEvent.blur]: () => void; } export default TabEventMap; //# sourceMappingURL=TabEventMap.d.ts.map