import type React from 'react'; export type InOutValue = { inFrame: number | null; outFrame: number | null; }; export type TimelineInOutContextValue = Record; export type SetTimelineInOutContextValue = { setInAndOutFrames: (u: React.SetStateAction) => void; }; export declare const TimelineInOutContext: React.Context; export declare const SetTimelineInOutContext: React.Context; export declare const useTimelineInOutFramePosition: () => InOutValue; export declare const useTimelineSetInOutFramePosition: () => SetTimelineInOutContextValue;