import { ReactNode } from 'react'; import { ProfileSource } from '../../ProfileSource'; import { NumberDuo } from '../../utils'; export type TimelineGuideData = { show: false; } | { show: true; props: { bounds: NumberDuo; }; }; interface Props { profileSource?: ProfileSource; compareMode: boolean; timelineGuide?: TimelineGuideData; } export declare const defaultValue: Props; declare const ProfileViewContext: import("react").Context; export declare const ProfileViewContextProvider: ({ children, value, }: { children: ReactNode; value?: Props; }) => JSX.Element; export declare const useProfileViewContext: () => Props; export default ProfileViewContext; //# sourceMappingURL=ProfileViewContext.d.ts.map