import { SvelteComponentTyped } from "svelte"; import { fade } from 'svelte/transition'; declare const __propDef: { props: { class?: string | undefined; visible?: boolean | undefined; transition?: typeof fade | undefined; transitionOpts?: { duration: number; } | undefined; dense?: boolean | undefined; outlined?: boolean | undefined; text?: boolean | undefined; tile?: boolean | undefined; dismissible?: boolean | undefined; border?: boolean | undefined; coloredBorder?: boolean | undefined; }; events: { introstart: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent; outrostart: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent; introend: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent; outroend: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent; dismiss: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { icon: {}; default: {}; close: {}; }; }; 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 {};