/** @typedef {typeof __propDef.props} SkullProps */ /** @typedef {typeof __propDef.events} SkullEvents */ /** @typedef {typeof __propDef.slots} SkullSlots */ export default class Skull extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type SkullProps = typeof __propDef.props; export type SkullEvents = typeof __propDef.events; export type SkullSlots = 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 {};