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