import { NamePath } from "rc-field-form/lib/interface"; import { FC, PropsWithChildren } from "react"; export declare type IItemGroupProps = PropsWithChildren<{ prefix: NamePath; translation?: string; }>; /** * Simple component used to add prefixes to FormItems (so it's possible to arbitrary alter field names). * * Internally context is used, so the stuff works regardless of the component tree. * * Also, do no not use some kind of "global" item group. */ export declare const ItemGroup: FC;