import { PhotoCaptureAppConfig, Sight } from '@monkvision/types'; /** * The props for the PhotoCaptureHUDSightTutorial component. */ export interface PhotoCaptureHUDSightTutorialProps extends Pick { /** * The sight to display the tutorial for. */ selectedSight: Sight; /** * Callback called when the user clicks on the "close" button in Sight Tutorial. */ onClose?: () => void; /** * The current tutorial step in PhotoCapture component. */ show?: boolean; } /** * This component displays the sight tutorial for a specific sight. */ export declare function PhotoCaptureHUDSightTutorial({ selectedSight, sightTutorial, onClose, show, enableSightTutorial, }: PhotoCaptureHUDSightTutorialProps): import("react").JSX.Element | null;