import { type ReactNode } from 'react'; import type { HighTableProps } from '../types.js'; type Props = Pick & { /** Child components */ children: ReactNode; }; /** * Provides the number of rows and columns, and the version of the data frame. * * It also providers a data key for testing purposes. */ export declare function DataProvider({ children, data }: Props): import("react/jsx-runtime").JSX.Element; export {};