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