import { type TableFeature, type TableOptions } from '@tanstack/react-table'; import type { ColumnFontStyleFeatureConstructors, DataTableColumnFontStyleProps } from './column-font-style-types.js'; import type { DataTableRowData } from '../../row-data-types.js'; import type { TDataTableFeatures } from '../types/features.types.js'; /** * Configuration hook for the DataTable FontStyle feature. * @internal */ export declare function useColumnFontStyle(props: DataTableColumnFontStyleProps, options: TableOptions>): void; export declare function constructColumnFontStyleFeature(): TableFeature; /** * 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 DataTableColumnFontStyleFeature: TableFeature;