import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { FlowbiteHeadingLevel } from '../Flowbite/FlowbiteTheme'; export type TimelineTitleProps = PropsWithChildren & { className?: string; as?: FlowbiteHeadingLevel; }>; export declare const TimelineTitle: FC;