/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import type { FC, HTMLAttributes, ReactNode } from 'react';
interface CommonCellProps {
    indent?: string;
    width?: string | number;
    children?: ReactNode;
}
/**
 * __Common cell__
 */
declare const CommonCell: FC<HTMLAttributes<HTMLDivElement> & CommonCellProps>;
export default CommonCell;
