/// import type { GroupContent } from "@prismicio/types-internal/lib/content"; import type { Group } from "@prismicio/types-internal/lib/customtypes"; interface GroupEditorProps { content: GroupContent | undefined; group: Group; id: string; readOnly: boolean; onContentChange: (content: GroupContent) => void; } export declare function GroupEditor(props: GroupEditorProps): JSX.Element; export declare function getGroupLabel(group: Group): string; export {};