import { IntrinsicStyledCoreProps } from '@smart-react-components/core/element-props/intrinsic-styled-core-props';
import { JSXElementProps, Partial, ResponsiveProp } from '@smart-react-components/core/types';
import React from 'react';
export interface Props extends IntrinsicStyledCoreProps, Partial<ResponsiveProp<'stickyX', number>>, Partial<ResponsiveProp<'stickyY', number>> {
    children: JSX.Element;
    elementProps?: JSXElementProps;
    hasInternalScroll?: boolean;
}
declare const TableContainer: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLElement>>;
export default TableContainer;
