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