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