import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        title: string;
        description: string;
        message?: string;
        stackTrace?: string;
    };
    events: {
        close: CustomEvent<any>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type ErrorNotificationProps = typeof __propDef.props;
export type ErrorNotificationEvents = typeof __propDef.events;
export type ErrorNotificationSlots = typeof __propDef.slots;
export default class ErrorNotification extends SvelteComponentTyped<ErrorNotificationProps, ErrorNotificationEvents, ErrorNotificationSlots> {
}
export {};
