import React from "react"; import type { PeriodProps } from "./types"; interface TimelineClickablePeriodProps extends PeriodProps { onSelectPeriod?: (e: React.MouseEvent | React.KeyboardEvent) => void; isActive?: boolean; periodRef: React.ForwardedRef; /** * Default orientation of popover * @default "top" */ placement?: "top" | "bottom"; } declare const ClickablePeriod: React.MemoExoticComponent<({ onSelectPeriod, start, end, status, cropped, direction, left, width, icon, children, isActive, statusLabel, restProps, periodRef, }: TimelineClickablePeriodProps) => React.JSX.Element>; export default ClickablePeriod;