import type { WorkSpreadsheetSheet } from '../work-types'; import { type SpreadsheetSheetMoveDirection } from './spreadsheet-sheet-model'; export interface SpreadsheetSheetBarProps { activeSheetId: string; editable: boolean; sheets: readonly WorkSpreadsheetSheet[]; onActivate(sheetId: string): void; onCreate(): void; onDelete(sheetId: string): void; onDuplicate(sheetId: string): void; onHide(sheetId: string): void; onMove(sheetId: string, direction: SpreadsheetSheetMoveDirection): void; onRename(sheetId: string, name: string): void; onSetColor(sheetId: string, color: string | null): void; onShow(sheetId: string): void; } export declare function SpreadsheetSheetBar({ activeSheetId, editable, sheets, onActivate, onCreate, onDelete, onDuplicate, onHide, onMove, onRename, onSetColor, onShow, }: SpreadsheetSheetBarProps): import("react").JSX.Element[];