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