import type { ComponentProps, FC } from 'react';
import type { DeepPartial } from '../../types';
import type { FlowbiteTimelineBodyTheme } from './TimelineBody';
import type { FlowbiteTimelineTimeTheme } from './TimelineTime';
import type { FlowbiteTimelineTitleTheme } from './TimelineTitle';
export interface FlowbiteTimelineContentTheme {
    root: {
        base: string;
    };
    time: FlowbiteTimelineTitleTheme;
    title: FlowbiteTimelineTimeTheme;
    body: FlowbiteTimelineBodyTheme;
}
export interface TimelineContentProps extends ComponentProps<'div'> {
    theme?: DeepPartial<FlowbiteTimelineContentTheme>;
}
export declare const TimelineContent: FC<TimelineContentProps>;
