import { DeviceOrientation } from '@monkvision/types'; /** * Props accepted by the VideoCaptureTutorial component. */ export interface VideoCaptureTutorialProps { /** * Callback called when the user closes the tutorial by clicking on the confirm button. */ onClose?: () => void; /** * Use this prop to enforce a specific device orientation for the Camera screen. */ enforceOrientation?: DeviceOrientation; } /** * This component is a tutorial displayed on top of the camera when the user first starts the video capture. */ export declare function VideoCaptureTutorial({ onClose, enforceOrientation }: VideoCaptureTutorialProps): import("react").JSX.Element;