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