import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface TimelineLabelProps extends ComposableProps<'div'> {
/**
* Label content.
*/
children: React.ReactNode;
}
/**
* TimelineLabel Component
*
* A composable component for the label of a timeline item.
* Typically used within TimelineItem (shown on opposite side in alternate mode).
*
* @public
*
* @example
* ```tsx
*