import { IntrinsicStyledCoreProps } from '@smart-react-components/core/element-props/intrinsic-styled-core-props';
import { JSXElementProps, PaletteProp, Partial, ResponsiveProp, ShapeProp, SizeProp, TableStripedOrientation } from '@smart-react-components/core/types';
import React from 'react';
export interface Props extends IntrinsicStyledCoreProps, Partial<ResponsiveProp<'size', SizeProp>> {
    children: JSX.Element | JSX.Element[];
    elementProps?: JSXElementProps;
    hasBorderX?: boolean;
    hasBorderY?: boolean;
    hasHeadBackground?: boolean;
    hasHover?: boolean;
    hasInternalScroll?: boolean;
    isBlock?: boolean;
    isSoft?: boolean;
    isStriped?: boolean;
    palette?: PaletteProp;
    shape?: ShapeProp;
    stripedOrientation?: TableStripedOrientation;
}
declare const Table: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLTableElement>>;
export default Table;
