import { type ColumnDef, type RowData, type TableFeatures, type TableOptions } from '@tanstack/react-table'; /** * Returns the user-defined `options.columns` enriched by built-in prefix and suffix columns * (depending on which features are enabled). * @param options - the table options containing the user-defined columns * and flags for enabled/disabled features. * @internal */ export declare function useBuiltInColumns(options: TableOptions): ColumnDef[];