import { ElementChildren, GroupElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type GroupProps = RecursivePartial & { idx?: string | null; children?: ElementChildren | GroupElement["children"]; data?: GroupElement["data"]; }; export declare function Group(props: GroupProps): React.JSX.Element;