import { type Toaster } from './toast.js'; export interface Props { /** Toaster instance that manages the toast queue. */ toaster?: Toaster; /** Screen corner where toasts appear. */ position?: 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end'; /** CSS class to apply to the viewport container. */ class?: string; } declare const ToastViewport: import("svelte").Component; type ToastViewport = ReturnType; export default ToastViewport; //# sourceMappingURL=ToastViewport.svelte.d.ts.map