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