import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
interface CellValueProps extends ViewProps {
    alone?: boolean;
    children: ReactNode;
}
declare function CellValue(props: CellValueProps): JSX.Element;
export default CellValue;
