type Position = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'; type Props = { /** Corner/edge the stack anchors to. Default 'bottom-right'. */ position?: Position; /** Max toasts shown at once (older ones stay queued in the store). */ max?: number; }; declare const SvToaster: import("svelte").Component; type SvToaster = ReturnType; export default SvToaster;