import React from 'react'; import { CellFactory } from '../types/cell.type'; export interface CellProps { style?: React.CSSProperties; align?: "left" | "center" | "right" | "justify" | "inherit"; children: CellFactory; } export declare const Cell: React.FC; export interface TextCellProps { style?: React.CSSProperties; align?: "left" | "center" | "right" | "justify" | "inherit"; } export declare const TextCell: React.FC; //# sourceMappingURL=cell.d.ts.map