export interface Item { desc: string; color?: 'blue' | 'green' | 'red' | 'gray' | string; } export interface Props { items?: Item[]; width?: number | string; lineStyle?: 'solid' | 'dashed' | 'dotted'; mode?: 'left' | 'center' | 'right'; position?: 'left' | 'right'; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { dot?(_: { item: Item; index: number; }): any; desc?(_: { item: Item; index: number; }): any; }; refs: { descRef: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent & Readonly<{}>, { mode: "left" | "center" | "right"; width: number | string; position: "left" | "right"; items: Item[]; lineStyle: "solid" | "dashed" | "dotted"; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { descRef: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };