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