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