import { SvelteComponentTyped } from "svelte"; export declare const ALERT_CONTEXT_ID = "alert-context-id"; declare const __propDef: { props: { [x: string]: any; type?: "info" | "warn" | "success" | "error" | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { icon: {}; title: {}; description: {}; extra: {}; }; }; export declare type AlertProps = typeof __propDef.props; export declare type AlertEvents = typeof __propDef.events; export declare type AlertSlots = typeof __propDef.slots; export default class Alert extends SvelteComponentTyped { } export {};