import type { ReactNode } from "react"; import type { CellBaseProps } from "./cell.shared"; export interface CellProps extends CellBaseProps { title?: ReactNode; brief?: ReactNode; } declare function Cell(props: CellProps): JSX.Element; export default Cell;