import { SvelteComponent } from "svelte"; import type { Message } from './message'; import type { Color } from '../../types'; declare const __propDef: { props: { class?: string | undefined; title?: string | undefined; message: Message; persist?: boolean | undefined; focusOnCreate?: boolean | undefined; color?: Color | undefined; icon?: string | undefined; }; events: { close: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { text: {}; default: {}; }; }; export type AlertProps = typeof __propDef.props; export type AlertEvents = typeof __propDef.events; export type AlertSlots = typeof __propDef.slots; export default class Alert extends SvelteComponent { } export {};