import type { Column } from '@tanstack/table-core'; import type { GetRowBehavior, KottiTable } from './types'; type RowBehavior = ReturnType>; type RowCellWrapper = { class: string[]; component: string; on?: Record; props?: Record; }; export declare const getCellWrapComponent: ({ behavior, column, triggerExpand, }: { behavior: RowBehavior; column: Column; triggerExpand: (rowId: string) => void; }) => RowCellWrapper; export {};