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