import { PropType } from "vue"; import { ElementTypes } from '../../../typings'; export declare const STimelineItemProps: { /** * @description 时间线子项的类型 */ type: PropType; /** * @description 时间线子项的 '时间'相对于'内容'的定位 */ placement: { type: PropType<"start" | "end">; default: string; }; /** * @description 时间线子项的图标 */ icon: StringConstructor; /** * @description 圆圈的颜色 */ color: StringConstructor; /** * @description 时间线子项的主题 */ variant: PropType<"default" | "empty">; /** * @description 时间线子项的 '时间' */ time: { type: StringConstructor; default: string; }; };