import React from 'react'; interface TableGroupProps { title?: React.ReactNode; children?: React.ReactNode; className?: string; } declare function TableGroup({ title, children, className, ...props }: TableGroupProps): import("react/jsx-runtime").JSX.Element; export { TableGroup };