import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface TimelineContentProps extends ComposableProps<'div'> {
/**
* Content.
*/
children: React.ReactNode;
}
/**
* TimelineContent Component
*
* A composable component for the content of a timeline item.
* Typically used within TimelineItem.
*
* @public
*
* @example
* ```tsx
*