/** MDX wrapper kind that cannot be executed by the synchronous React facade. */ export type MdxWrapperKind = "layout" | "provider"; /** * Raised when legacy React wrapper components receive compiled MDX code. * * Executing a string factory during render is intentionally unsupported. The * server rendering pipeline must load and validate the ESM module before it * constructs the React tree. */ export declare class MdxWrapperRenderError extends Error { readonly wrapperKind: MdxWrapperKind; readonly name = "MdxWrapperRenderError"; readonly code = "VF_REACT_ASYNC_MDX_REQUIRED"; constructor(wrapperKind: MdxWrapperKind); } export declare function rejectSynchronousMdxWrapper(wrapperKind: MdxWrapperKind): never; //# sourceMappingURL=mdx-wrapper-error.d.ts.map