import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
import { CellAlign, CellSize } from "./cell.shared";
export interface CellProps extends ViewProps {
    size?: CellSize;
    align?: CellAlign;
    title?: ReactNode;
    brief?: ReactNode;
    icon?: ReactNode;
    rightIcon?: ReactNode;
    bordered?: boolean;
    clickable?: boolean;
    children?: ReactNode;
}
declare function Cell(props: CellProps): JSX.Element;
export default Cell;
