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