import { type ReactNode } from 'react';
import type { HighTableProps } from '../types.js';
type Props = Pick<HighTableProps, 'columnConfiguration'> & {
    /** Child components */
    children: ReactNode;
};
/**
 * Provide the columns configuration to the table, through the ColumnParametersContext.
 *
 * It merges the column descriptors from the data frame with the user-provided configuration.
 */
export declare function ColumnParametersProvider({ columnConfiguration, children }: Props): import("react/jsx-runtime").JSX.Element;
export {};
