import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; theme?: string | undefined; isCloseable?: boolean | undefined; showIcon?: boolean | undefined; customIcon?: string | undefined; description?: string | undefined; message?: string | undefined; timeout?: number | undefined; inline?: boolean | undefined; }; events: { click: MouseEvent; close: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; 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 {};