import { default as React } from 'react'; export interface TableRootProps extends React.PropsWithChildren { className?: string; ref?: React.Ref; } declare function TableRoot(props: TableRootProps): import("react/jsx-runtime").JSX.Element; export default TableRoot;