/** @typedef {typeof __propDef.props} AlertCircleProps */ /** @typedef {typeof __propDef.events} AlertCircleEvents */ /** @typedef {typeof __propDef.slots} AlertCircleSlots */ export default class AlertCircle extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type AlertCircleProps = typeof __propDef.props; export type AlertCircleEvents = typeof __propDef.events; export type AlertCircleSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; color?: string; strokeWidth?: string; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};