import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        /**
           * @name label
           * @description The label for the icon
           * @type {string}
           */ label?: string;
        /**
           * @name severity
           * @description The severity type of the icon
           * @type {"info" | "error" | "success" | "warning"}
           * @default ALERT_SEVERITIES.info
           */ severity?: string;
        /**
           * @name size
           * @description The size of the icon
           * @type {"small" | "medium" | "large"}
           * @default NOTIFICATION_SIZES.large
           */ size?: string;
        /**
           * @name filled
           * @description Whether the icon should be filled with a circle or not
           * @type {boolean}
           * @default false
           */ filled?: boolean;
        /**
           * @name inverse
           * @description Whether the icon color should be inversed or not
           * @type {boolean}
           * @default false
           */ inverse?: boolean;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
    exports?: {} | undefined;
    bindings?: string | undefined;
};
export type AlertBadgeProps = typeof __propDef.props;
export type AlertBadgeEvents = typeof __propDef.events;
export type AlertBadgeSlots = typeof __propDef.slots;
export default class AlertBadge extends SvelteComponent<AlertBadgeProps, AlertBadgeEvents, AlertBadgeSlots> {
}
export {};
