import type { ExtractPropTypes } from 'vue'; import type TimelineItem from './timeline-item.vue'; export declare const timelineItemProps: { timestamp: { type: StringConstructor; default: string; }; hideTimestamp: { type: BooleanConstructor; default: boolean; }; center: { type: BooleanConstructor; default: boolean; }; placement: { type: StringConstructor; default: string; }; type: { type: StringConstructor; default: string; }; color: { type: StringConstructor; default: string; }; size: { type: StringConstructor; default: string; }; icon: { type: PropType; default: string; }; hollow: { type: BooleanConstructor; default: boolean; }; }; export type TimelineItemProps = ExtractPropTypes; export type TimelineItemInstance = InstanceType;