/** @typedef {typeof __propDef.props} ListBulletProps */ /** @typedef {typeof __propDef.events} ListBulletEvents */ /** @typedef {typeof __propDef.slots} ListBulletSlots */ export default class ListBullet extends SvelteComponent<{ [x: string]: any; }, { click: MouseEvent; mouseover: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; keydown: KeyboardEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type ListBulletProps = typeof __propDef.props; export type ListBulletEvents = typeof __propDef.events; export type ListBulletSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { click: MouseEvent; mouseover: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; keydown: KeyboardEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};