import type { ComponentProps, FC, PropsWithChildren, ReactNode } from "react"; export type TimelnePointProps = PropsWithChildren & { icon?: ReactNode; className?: string; }>; export declare const gradientColor: string[]; export declare const TimelinePoint: FC;