import { SvelteComponentTyped } from "svelte"; import type { NotificationType } from './types'; declare const __propDef: { props: { notifications?: NotificationType[] | undefined; }; events: { clickoutside: Event | KeyboardEvent | UIEvent | MouseEvent | TouchEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | ProgressEvent | SecurityPolicyViolationEvent | SubmitEvent | TransitionEvent | WheelEvent; dismiss: CustomEvent; 'go-to-link': CustomEvent; 'dismissed-all': CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { header: {}; }; }; export type NotificationsProps = typeof __propDef.props; export type NotificationsEvents = typeof __propDef.events; export type NotificationsSlots = typeof __propDef.slots; export default class Notifications extends SvelteComponentTyped { } export {};