import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        title?: string;
        message?: string;
        cssClass?: string;
        deleteBtn?: boolean;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
        actions: {};
    };
};
export type AlertProps = typeof __propDef.props;
export type AlertEvents = typeof __propDef.events;
export type AlertSlots = typeof __propDef.slots;
export default class Alert extends SvelteComponent<AlertProps, AlertEvents, AlertSlots> {
}
export {};
