/** @typedef {typeof __propDef.props} BiPlayProps */ /** @typedef {typeof __propDef.events} BiPlayEvents */ /** @typedef {typeof __propDef.slots} BiPlaySlots */ export default class BiPlay extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, {}> { } export type BiPlayProps = typeof __propDef.props; export type BiPlayEvents = typeof __propDef.events; export type BiPlaySlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};