type Props = { /** Container id. Routes dialogs opened via `Dialogs.open({ containerId })`. Default container is the empty string. @default '' */ id?: string; }; /** * DialogHost — renders dialogs routed to its container id via the `Dialogs` static API. Mount once at the root of your app for the default container (`id=""`), or with an explicit `id` to receive dialogs from `Dialogs.open({ containerId: '...' })`. If no `` is mounted for a target container id, one is lazily created on `document.body` at the first `Dialogs.open` call. * * ### Props * | Prop | Type | Description | * |---|---|---| * | `id` | `string` | Container id; default `''` | */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;