import type { EmbedMeta, EmbedProvider, ProviderConfig } from './types'; /** * Render options for embeds */ interface RenderOptions { embedId: string; meta: EmbedMeta; className: string; template?: string | null; lazyLoad: boolean; enableSandbox: boolean; sandboxPermissions: string[]; providers: Partial>; } /** * Render an embed */ export declare function renderEmbed(options: RenderOptions): string; /** * Render special embeds (mermaid, excalidraw, pdf, drawio) */ export declare function renderSpecialEmbed(options: RenderOptions): string; export {};