import React, { type ComponentProps, type RefAttributes } from "react"; import { Text } from "../Text/Text"; export interface TimelineStepProps extends RefAttributes { key: string | number; type?: "wide" | "base" | "withoutDot" | "emptyDot"; title?: string | ComponentProps; content: React.ReactNode; dataTestId?: string | number; } export declare const TimelineStep: React.ForwardRefExoticComponent & React.RefAttributes>;