import { PhotoCaptureAppConfig } from '@monkvision/types'; /** * Props of the SightGuideline component. */ export interface SightGuidelineProps extends Pick { /** * The id of the sight. */ sightId: string; /** * Display a default message if no sightGuideline is found. * * @default false */ enableDefaultMessage?: boolean; /** * Boolean indicating if the sight guidelines are enabled. * * @default true */ disabled?: boolean; /** * Callback called when the user clicks on both: 'disable' checkbox and 'okay' button. */ onDisableSightGuidelines?: () => void; } /** * Custom button displaying the sight guideline. */ export declare function SightGuideline({ sightId, sightGuidelines, addDamage, enableDefaultMessage, disabled, onDisableSightGuidelines, }: SightGuidelineProps): import("react").JSX.Element;