import { type VariantProps } from "class-variance-authority"; import * as React from "react"; declare const markerVariants: (props?: ({ variant?: "complete" | "current" | "upcoming" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface TimelineProps extends React.HTMLAttributes { /** * When true, last item does not render a line below it. */ bounded?: boolean; } declare function Timeline({ className, children, bounded, ...props }: TimelineProps): React.JSX.Element; export interface TimelineItemProps extends React.HTMLAttributes, VariantProps { title?: string; description?: React.ReactNode; meta?: React.ReactNode; isLast?: boolean; } declare const TimelineItem: React.ForwardRefExoticComponent>; declare namespace Timeline { var displayName: string; } declare namespace Timeline { var Item: React.ForwardRefExoticComponent>; } export { Timeline, TimelineItem }; //# sourceMappingURL=Timeline.d.ts.map