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