import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; visible?: boolean | undefined; background?: string | undefined; border?: string | undefined; color?: string | undefined; radius?: string | undefined; duration?: number | undefined; slotLead?: string | undefined; slotContent?: string | undefined; slotTrail?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { lead: {}; title: {}; default: {}; trail: {}; }; }; 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 {};