import React from "react"; import { TimelineItemProps } from "antd"; import { PresetColorType } from "antd/lib/_util/colors"; import { LiteralUnion } from "antd/lib/_util/type"; export declare const ExtendTagTypes: ["primary", "secondary", "success", "error", "warning", "menu"]; export declare type IExtendTagType = typeof ExtendTagTypes[number]; export interface ITagProps extends Omit { color?: LiteralUnion; } declare const TimelineItemComponent: React.FC; export default TimelineItemComponent;