import { Sight } from '@monkvision/types'; /** * Parameters of the useComplianceAnalytics hook. */ export interface ComplianceAnalyticsParams { /** * The inspection ID. */ inspectionId: string; /** * The list of sights passed to the PhotoCapture component. */ sights: Sight[]; } /** * Custom hook used for the compliance analytics by sending an event for 'non_compliant' image. */ export declare function useComplianceAnalytics({ inspectionId, sights }: ComplianceAnalyticsParams): { setIsInitialInspectionFetched: import("react").Dispatch>; };