import type { CSSProperties, ReactNode } from 'react'; import type { Color } from '../../theme'; type Align = 'left' | 'center' | 'right'; type CellProps = { children?: ReactNode; className?: string; colSpan?: number; rowSpan?: number; sentiment?: Color; align?: Align; style?: CSSProperties; }; export declare function Cell({ children, className, colSpan, rowSpan, sentiment, align, style }: CellProps): import("react").JSX.Element; export declare namespace Cell { var displayName: string; } export {}; //# sourceMappingURL=Cell.d.ts.map