import type { PreventExitListenerResult } from '@monkvision/common'; import type { VideoCaptureProps } from '../VideoCapture'; import type { PhotoCaptureProps } from '../../PhotoCapture'; /** * Params of the useHybridVideoState hook. */ export interface UseHybridVideoStateParams extends Pick { props: VideoCaptureProps; } export declare function useHybridVideoState({ props, allowRedirect }: UseHybridVideoStateParams): { enableHybridVideo: boolean; photoCaptureConfig: PhotoCaptureProps | null; };