import { RowConfig } from '../../../shared/types/table'; export declare const useTableExpand: (initialExpandedIds?: (string | number)[]) => { expandedIds: (string | number)[]; expandedCount: number; handleRowExpand: (row: RowConfig) => void; expandRow: (rowId: string | number) => void; collapseRow: (rowId: string | number) => void; toggleRow: (rowId: string | number) => void; expandAll: (rows: RowConfig[]) => void; collapseAll: () => void; isExpanded: (rowId: string | number) => boolean; applyExpandedState: (rows: RowConfig[]) => RowConfig[]; }; //# sourceMappingURL=useTableExpand.d.ts.map