import React from "react"; import { RationalTime } from "@techsquidtv/canvas-timeline-utils"; import { TimelineEngine } from "@techsquidtv/canvas-timeline-core"; //#region src/components/playhead/PlayheadArea.d.ts /** * Props for the interactive playhead scrub area. */ interface PlayheadAreaProps { /** Additional class names applied to the absolute-positioned scrub area. */ className?: string; /** Custom handler for double-click or double-tap marker behavior at a timeline time. */ onDoubleClick?: (time: RationalTime, engine: TimelineEngine, e: React.PointerEvent | React.MouseEvent) => void; } declare const PlayheadArea: React.ForwardRefExoticComponent, "onDoubleClick"> & React.RefAttributes>; //#endregion export { PlayheadArea, PlayheadAreaProps }; //# sourceMappingURL=PlayheadArea.d.mts.map