import type { ReactNode } from 'react';
import type { HighTableProps } from '../../types.js';
type Props = Pick<HighTableProps, 'className' | 'maxRowNumber' | 'styled'> & {
    /** Child components */
    children: ReactNode;
};
export default function Wrapper({ children, className, maxRowNumber, styled }: Props): import("react/jsx-runtime").JSX.Element;
export {};
