import { VNodeChild, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import * as toast from '@zag-js/toast'; interface ToastItemProps { value: toast.Options; index: number; parent: toast.GroupService; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: { title?: VNodeChild; description?: VNodeChild; duration?: number | undefined; removeDelay?: number | undefined; id?: string | undefined; type?: toast.Type | undefined; priority?: toast.ToastQueuePriority | undefined; onStatusChange?: ((details: toast.StatusChangeDetails) => void) | undefined; action?: toast.ActionOptions | undefined; closable?: boolean | undefined; meta?: Record | undefined; }): any; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };