import { StoryblokReactRichTextComponentProps } from "./rich-text-renderer.cjs"; import "./richtext.cjs"; import { ComponentPropsWithoutRef, ComponentType, ReactNode } from "react"; import "@storyblok/js"; //#region src/core/create-storyblok-richtext.d.ts type DivProps = Omit, "children">; type WrappedProps = StoryblokReactRichTextComponentProps & DivProps & { wrapper?: true; }; type UnwrappedProps = StoryblokReactRichTextComponentProps & { wrapper: false; }; type SbRichTextProps = WrappedProps | UnwrappedProps; //#endregion export { SbRichTextProps };