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