import type { FC } from "react"; import { type ButtonDefinitionWithKey, type ButtonProps } from "../ButtonV2/ButtonProps.type"; import { type TitleProps } from "../Title/Title"; export type TimelineHeaderProps = { title?: string | TitleProps; buttons?: ButtonDefinitionWithKey[]; withBorder?: boolean; }; export declare const TimelineHeader: FC; export default TimelineHeader;