/** @typedef {typeof __propDef.props} PlayBackProps */ /** @typedef {typeof __propDef.events} PlayBackEvents */ /** @typedef {typeof __propDef.slots} PlayBackSlots */ export default class PlayBack extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type PlayBackProps = typeof __propDef.props export type PlayBackEvents = typeof __propDef.events export type PlayBackSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}