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 * * * Event * 2024 * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically positioned based on Timeline mode. */ export declare const TimelineLabel: React.ForwardRefExoticComponent>; //# sourceMappingURL=TimelineLabel.d.ts.map