flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
6 lines (5 loc) • 359 B
text/typescript
import type { ThemingProps } from "../../types";
import type { TimelineItemTheme } from "./TimelineItem";
export type TimelineItemContextValue = ThemingProps<TimelineItemTheme>;
export declare const TimelineItemContext: import("react").Context<TimelineItemContextValue | undefined>;
export declare function useTimelineItemContext(): TimelineItemContextValue;