import type { ReactNode } from 'react'; import type { AriaLabelingProps, CommonProps } from '../types.js'; export interface TableContainerProps extends CommonProps, AriaLabelingProps { /** The contents of the container. */ children: ReactNode; } /** * Renders a scrollable container that allows a table to overflow in a responsive way. * * See [table usage guidelines](https://ui.cimpress.io/components/table/) and [table building guide](https://ui.cimpress.io/dev-guides/tables/). */ declare const _TableContainer: (props: TableContainerProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _TableContainer as TableContainer }; //# sourceMappingURL=table-container.d.ts.map