import { AddDamage } from '@monkvision/types'; /** * Props of the AddDamageButton component. */ export interface AddDamageButtonProps { /** * Callback called when the user presses the button. */ onAddDamage?: () => void; /** * Boolean indicating whether the Add Damage feature is enabled. If disabled, the `Add Damage` button will be hidden. */ addDamage?: AddDamage; } /** * Custom button displayed in the PhotoCapture Camera HUD that allows user to enter add damage mode. */ export declare function AddDamageButton({ onAddDamage, addDamage }: AddDamageButtonProps): import("react").JSX.Element | null;