/// <reference types="react" />
import { HeightType, MarginType, WidthType } from '../../../../types/styleType';
interface TableDataContainerProps extends WidthType, MarginType, HeightType {
    selected?: boolean;
}
export declare const formatSize: (size: string | number | undefined, exceptionValue?: string) => string;
export declare const TableDataContainer: import("@emotion/styled").StyledComponent<{
    theme?: import("@emotion/react").Theme | undefined;
    as?: import("react").ElementType<any> | undefined;
} & TableDataContainerProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
export {};
