import { SvelteComponentTyped } from "svelte"; import type { NotificationType } from './types'; declare const __propDef: { props: { notification: NotificationType; classes?: string | undefined; }; events: { dismiss: CustomEvent; 'go-to-link': CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { header: {}; default: {}; footer: {}; }; }; export type NotificationProps = typeof __propDef.props; export type NotificationEvents = typeof __propDef.events; export type NotificationSlots = typeof __propDef.slots; export default class Notification extends SvelteComponentTyped { } export {};