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