///
export declare type TimelineContextValue = {
frame: number;
playing: boolean;
setFrame: (u: React.SetStateAction) => void;
setPlaying: (u: React.SetStateAction) => void;
};
export declare const TimelineContext: import("react").Context;
declare type TimelineReturnType = readonly [
number,
(u: React.SetStateAction) => void
];
export declare const useTimelinePosition: () => TimelineReturnType;
declare type PlayingReturnType = readonly [
boolean,
(u: React.SetStateAction) => void
];
export declare const usePlayingState: () => PlayingReturnType;
export {};
//# sourceMappingURL=timeline-position-state.d.ts.map