import type { DataTableColumnFontStyleProps } from './column-font-style-types.js'; import type { TableFeature, TableOptions } from '../../hooks/useTable/types.js'; /** * Feature implementation for FontStyle. This contains the logic that will be given * to the tanstack table. The implementing interface is important as these are * the function that will be called by the tanstack table core during render. * @internal */ export declare const DataTableColumnFontStyle: TableFeature; /** * Configuration hook for the DataTable FontStyle feature. * @internal */ export declare function useColumnFontStyle(props: DataTableColumnFontStyleProps, options: TableOptions): void;