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