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