/** @typedef {typeof __propDef.props} XCircleFillProps */ /** @typedef {typeof __propDef.events} XCircleFillEvents */ /** @typedef {typeof __propDef.slots} XCircleFillSlots */ export default class XCircleFill extends SvelteComponentTyped<{ width?: number; height?: number; class?: string; fill?: string; style?: string; }, { click: MouseEvent; } & { [evt: string]: CustomEvent; }, {}> { } export type XCircleFillProps = typeof __propDef.props; export type XCircleFillEvents = typeof __propDef.events; export type XCircleFillSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { width?: number; height?: number; class?: string; fill?: string; style?: string; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export {};