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