import { default as React } from 'react'; interface NestedTimelineRendererProps { items: any[]; nestedCardHeight?: number; mode?: string; isChild?: boolean; } /** * Renders nested timeline items using a card-based layout with center connecting line * instead of full timeline rendering to avoid complex nested timeline layouts */ declare const NestedTimelineRenderer: React.FC; export default NestedTimelineRenderer; //# sourceMappingURL=nested-timeline-renderer.d.ts.map