import { PixelDimensions } from '@monkvision/types'; /** * Props of the CloseUpShot component. */ export interface CloseUpShotProps { /** * Callback called when the user cancels the Add Damage mode. */ onCancel?: () => void; /** * Boolean indicating whether the counter should be displayed. * * @default true */ showCounter?: boolean; /** * The dimensions of the Camera video stream. */ streamDimensions?: PixelDimensions | null; } /** * Component implementing an HUD displayed on top of the Camera preview during the PhotoCapture process when the current * mode is ADD_DAMAGE_2ND_SHOT | ADD_DAMAGE_PART_SELECT_SHOT. */ export declare function CloseUpShot({ onCancel, showCounter, streamDimensions }: CloseUpShotProps): import("react").JSX.Element;