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