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