import type { ColumnDef, TableOptions } from './useTable/types.js'; /** * 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. */ export declare const useBuiltInColumns: (options: TableOptions) => ColumnDef[];