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