import { FC } from "react";
import { RowContainerProps } from "./shard";
export interface RowContainerGroupProps {
    values?: RowContainerProps[];
}
declare const RowContainerGroup: FC<RowContainerGroupProps>;
export default RowContainerGroup;
