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