import { type PropsWithChildren } from 'react'; import type { DataTableConfig } from '../DataTable/public.api.js'; /** * Provider for the DataTable API config * @public */ export declare function DataTableConfigProvider(props: PropsWithChildren<{ value: DataTableConfig | string; }>): import("react/jsx-runtime").JSX.Element; /** * Internal helper function that returns the value of * `DataTable`'s config options based on the `key`. * @internal */ export declare function useDataTableConfigElement(key: T): DataTableConfig[T] | undefined;