import { SvelteComponentTyped } from "svelte"; export declare const NOTIFICATION_CONTENT_CONTEXT_ID = "notification-content-context-id"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: { title: {}; description: {}; default: {}; }; }; export declare type ContentProps = typeof __propDef.props; export declare type ContentEvents = typeof __propDef.events; export declare type ContentSlots = typeof __propDef.slots; export default class Content extends SvelteComponentTyped { } export {};