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