import { ComponentPropsWithoutRef } from 'react'; import { LayoutUtilProps } from '../../../../types'; /** * Props for the TableContainer component * @extends LayoutUtilProps * @extends ComponentPropsWithoutRef<"div"> */ export type TableContainerProps = LayoutUtilProps & ComponentPropsWithoutRef<"div">; /** * Styled container for tables that includes a scroll container and provides consistent background and border treatment * @param props - The props for the TableContainer component * @param props.children - The children of the TableContainer component * @param props.className - The class name of the TableContainer component * @param props.style - The style of the TableContainer component * @param props.ref - The ref of the TableContainer component */ export declare const TableContainer: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & import('react').RefAttributes>;