import React from 'react'; import { type IconName } from '../../atoms/Icons'; export type TimelineDotColor = 'primary' | 'success' | 'warning' | 'danger' | 'neutral'; export interface TimelineDotProps { /** * Dot color * @default 'primary' */ color?: TimelineDotColor; /** * Custom icon name or element */ icon?: IconName | React.ReactNode; /** * Custom dot content */ children?: React.ReactNode; className?: string; } export declare const TimelineDot: React.ForwardRefExoticComponent>; //# sourceMappingURL=TimelineDot.d.ts.map