import { type ReactNode, type FC } from 'react'; import { type Identifier } from '../types'; export declare const DataTableConfigContext: import("react").Context<{ expand?: ReactNode | FC<{ id: Identifier; record: any; resource: string; }>; expandSingle: boolean; hasBulkActions: boolean; hover?: boolean; }>; export declare const useDataTableConfigContext: () => { expand?: ReactNode | FC<{ id: Identifier; record: any; resource: string; }>; expandSingle: boolean; hasBulkActions: boolean; hover?: boolean; }; //# sourceMappingURL=DataTableConfigContext.d.ts.map