import type { VNodeChild } from "vue"; import type { XyTimelineItemSlots } from "./types"; type TimelinePosition = "left" | "right"; interface TimelineItemComponentProps { classNames?: unknown; color?: string; dot?: VNodeChild; label?: VNodeChild | string; pending?: boolean; position?: TimelinePosition; styles?: unknown; } type __VLS_Slots = XyTimelineItemSlots; declare const __VLS_base: import("vue").DefineComponent & Readonly<{}>, { label: string | number | boolean | import("vue").VNode | import("vue").VNodeArrayChildren | null; color: string; position: TimelinePosition; dot: string | number | boolean | import("vue").VNode | import("vue").VNodeArrayChildren | null; classNames: undefined; styles: undefined; pending: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };