import type { ToastrPosition } from './types'; type Props = { /** Container id. Routes toasts addressed via `Toastr.info(msg, { containerId })`. Default container is the empty string. @default '' */ id?: string; /** @default 'bottom-right' */ position?: ToastrPosition; }; /** * Toaster — renders toasts pushed via the `Toastr` static API. Mount once at * the root of your app for the default container, or with an explicit `id` to * route specific toasts there. Uses the browser Popover API to render in the * top layer above page content. * * ### Props * | Prop | Type | Description | * |---|---|---| * | `id` | `string` | Container id; default `''` | * | `position` | `ToastrPosition` | One of `top-left`, `top-center`, `top-right`, `bottom-left`, `bottom-center`, `bottom-right`. Default `bottom-right` | * * ### CSS Custom Properties * | Property | Description | Default | * |---|---|---| * | `--sc-kit--toaster--gap` | Vertical gap between toasts | `var(--sc-kit--space--2)` | * | `--sc-kit--toaster--margin` | Distance from viewport edge | `var(--sc-kit--space--4)` | * | `--sc-kit--toaster--max-width` | Max toast width | `420px` | */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;