import type { ThemingProps } from "../../types"; import type { TimelineTheme } from "./Timeline"; export interface TimelineContextValue extends ThemingProps { horizontal?: boolean; } export declare const TimelineContext: import("react").Context; export declare function useTimelineContext(): TimelineContextValue;