/// <reference types="react" />
import { TimelinePosition } from "./timeline.shared";
interface TimelineContextValue {
    position?: TimelinePosition;
}
declare const TimelineContext: import("react").Context<TimelineContextValue>;
export default TimelineContext;
