import { SvelteComponent } from "svelte"; import type { Color } from '../../types'; declare const __propDef: { props: { label?: string | undefined; icon?: string | undefined; href?: string | undefined; color?: Color | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type AlertBtnProps = typeof __propDef.props; export type AlertBtnEvents = typeof __propDef.events; export type AlertBtnSlots = typeof __propDef.slots; export default class AlertBtn extends SvelteComponent { } export {};