/** * @overload * @param { ToastOptions } options * @returns { void } */ export function toast(options: ToastOptions): void; /** * @overload * @param { string } message * @returns { void } */ export function toast(message: string): void; /** * @overload * @param { string } theme * @param { string } message * @returns { void } */ export function toast(theme: string, message: string): void; /** * @import { ShallowRef } from 'vue' * @import { ToasterPosition } from '#components' * @import { Theme } from '#utilities' */ export const toasters: (Record>); export type ToastOptions = { position?: ToasterPosition | undefined; message?: string | undefined; details?: string | undefined; theme?: string | undefined; icon?: string | undefined; duration?: number | undefined; }; import type { ToasterPosition } from '#components'; import type { Theme } from '#utilities'; import type { ShallowRef } from 'vue'; //# sourceMappingURL=index.d.ts.map