/** @typedef {typeof __propDef.props} NotificationProps */ /** @typedef {typeof __propDef.events} NotificationEvents */ /** @typedef {typeof __propDef.slots} NotificationSlots */ export default class Notification extends SvelteComponentTyped<{ class?: string | undefined; variant?: Variant | undefined; color?: "success" | "info" | "warning" | "danger" | undefined; body?: string | undefined; title?: string | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type NotificationProps = typeof __propDef.props; export type NotificationEvents = typeof __propDef.events; export type NotificationSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string | undefined; variant?: Variant | undefined; color?: "success" | "info" | "warning" | "danger" | undefined; body?: SlenderNotification['body']; title?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};