import * as React from 'react'; interface TableProps extends React.HTMLAttributes { /** * The overflow-auto in shadcn's Table component is there to handle tables that might be wider * than their container - it's a common pattern to ensure wide tables can be scrolled horizontally * without breaking the layout. This prop allows you to disable this behavior, because it might * cause issues with sticky headers. */ disableWrapper?: boolean; } declare const Table: React.ForwardRefExoticComponent>; declare const TableHeader: React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableBody: React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableFooter: React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableRow: React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableHead: React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableCell: React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableCaption: React.ForwardRefExoticComponent & React.RefAttributes>; export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, }; //# sourceMappingURL=table.d.ts.map