import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        label?: string | undefined;
        size?: string | undefined;
    };
    events: {
        click: MouseEvent;
        mouseover: MouseEvent;
        mouseenter: MouseEvent;
        mouseleave: MouseEvent;
        focus: FocusEvent;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
    exports?: undefined;
    bindings?: undefined;
};
export type AlertCloseButtonProps = typeof __propDef.props;
export type AlertCloseButtonEvents = typeof __propDef.events;
export type AlertCloseButtonSlots = typeof __propDef.slots;
export default class AlertCloseButton extends SvelteComponent<AlertCloseButtonProps, AlertCloseButtonEvents, AlertCloseButtonSlots> {
}
export {};
