import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
interface CellGroupProps extends ViewProps {
    title?: ReactNode;
    clickable?: boolean;
    inset?: boolean;
    bordered?: boolean;
    children?: ReactNode;
}
export declare function CellGroup(props: CellGroupProps): JSX.Element;
export default CellGroup;
