import { type ReactNode, type FC } from 'react';
import { type Identifier } from "../types.cjs";
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