import { FC, ReactNode } from "react";
import { LineStyle } from "../separator";
import { RowContainerProps } from "../rowContainerGroup/shard";
import './index.less';
export interface GroupProps {
    label?: ReactNode;
    lineStyle?: LineStyle;
    values?: RowContainerProps[];
    border?: boolean;
    column?: number;
    wid?: string;
}
declare const Group: FC<GroupProps>;
export default Group;
