import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; position?: "top-right" | "top-center" | "top-left" | "bottom-right" | "bottom-center" | "bottom-left" | undefined; animate?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type NotificationProps = typeof __propDef.props; export type NotificationEvents = typeof __propDef.events; export type NotificationSlots = typeof __propDef.slots; export default class Notification extends SvelteComponent { } export {};