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