/// import { type GroupContent, type NestableContent } from "@prismicio/types-internal/lib/content"; import type { Group, NestableWidget } from "@prismicio/types-internal/lib/customtypes"; interface Props { content: NestableContent | GroupContent | undefined; id: string; widget: NestableWidget | Group; onContentChange: (content: NestableContent | GroupContent | undefined) => void; readOnly: boolean; } export declare function GroupAndNestableWidgetSwitch(props: Props): JSX.Element; export {};