/*! * @license * Copyright Squiz Australia Pty Ltd. All Rights Reserved. */ import { AxiosInstance } from 'axios'; /** * Watch and wait for upload and scan to complete * @param apiClient - Axios client for API calls * @param endpoint - API endpoint to poll * @param id - Upload ID to check * @returns Promise that resolves when scan is complete */ export declare function watchAndWaitForUploadAndScanComplete(apiClient: AxiosInstance, endpoint: string, id: string): Promise;