import { HTMLAttributes, SlotsType, VNodeChild, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; import { CreateToasterReturn } from './create-toaster'; import * as toast from '@zag-js/toast'; export type ToastOptions = toast.Options; export interface ToasterBaseProps extends PolymorphicProps { toaster: CreateToasterReturn; } export interface ToasterProps extends ToasterBaseProps, /** @vue-ignore */ HTMLAttributes, /** @vue-ignore */ SlotsType<{ default: ToastOptions; }> { } 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<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };