/** * toruk-embed/previewer — embeddable chat preview. * * Thin wrapper around the existing SolidJS widget that ships in this * package. No UI redesign — the visual surface is identical to what * `execute()` / `executeFull()` produce today. The wrapper adds: * * - Typed `AuthConfig`-based auth (no localStorage reads required) * - Lifecycle controls: mount/unmount/open/close/updateConfig * - Mode mapping: floating / inline / modal * * See ENGINEERING-PROPOSAL.md §6.6 and §9.2 for the design rationale. */ export { createTorukPreviewer } from './previewer/create-toruk-previewer'; export type { PreviewerMode, PreviewerVariant, PreviewerMountOptions, TorukPreviewerInstance } from './previewer/create-toruk-previewer';