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