/// import { CellProps } from "./cell"; import CellGroup from "./cell-group"; export type { CellAlign, CellSize } from "./cell.shared"; export { default as CellBase } from "./cell-base"; export { default as CellTitle } from "./cell-title"; export { default as CellValue } from "./cell-value"; export type { CellProps } from "./cell"; interface CellInterface { (props: CellProps): JSX.Element; Group: typeof CellGroup; } declare const Cell: CellInterface; export default Cell;