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