/** * Props of the ZoomOutShot component. */ export interface ZoomOutShotProps { /** * Callback called when the user cancels the Add Damage mode. */ onCancel?: () => void; } /** * Component implementing an HUD displayed on top of the Camera preview during the PhotoCapture process when the current * mode is ADD_DAMAGE_1ST_SHOT. */ export declare function ZoomOutShot({ onCancel }: ZoomOutShotProps): import("react").JSX.Element;