export function notify(_notification: SlenderNotification): void; /** @typedef {typeof __propDef.props} NotificationsProps */ /** @typedef {typeof __propDef.events} NotificationsEvents */ /** @typedef {typeof __propDef.slots} NotificationsSlots */ export default class Notifications extends SvelteComponentTyped<{ [x: string]: any; position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | undefined; notifications?: SlenderNotification[] | undefined; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type NotificationsProps = typeof __propDef.props; export type NotificationsEvents = typeof __propDef.events; export type NotificationsSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | undefined; notifications?: SlenderNotification[] | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};