import type { FC, PropsWithChildren } from 'react'; export interface FlowbiteTimelineTheme { direction: { horizontal: string; vertical: string; }; item: { base: { horizontal: string; vertical: string; }; point: { base: { horizontal: string; vertical: string; }; marker: { base: { horizontal: string; vertical: string; }; icon: { wrapper: string; base: string; }; }; line: string; }; content: { base: string; time: string; title: string; body: string; }; }; } export type TimelineProps = PropsWithChildren<{ className?: string; horizontal?: boolean; }>; export declare const Timeline: FC & { Item: FC; Point: FC; Content: FC; Time: FC; Title: FC; Body: FC; };