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