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