import { SvelteComponentTyped } from "svelte"; export declare const NOTIFICATION_CONTEXT_ID = "notification-context-id"; declare const __propDef: { props: { [x: string]: any; type?: 'info' | 'warn' | 'error' | 'success' | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { leading: {}; content: {}; extra: {}; }; }; export declare type NotificationProps = typeof __propDef.props; export declare type NotificationEvents = typeof __propDef.events; export declare type NotificationSlots = typeof __propDef.slots; export default class Notification extends SvelteComponentTyped { } export {};