/*! * @license * Copyright Squiz Australia Pty Ltd. All Rights Reserved. */ import { AxiosInstance } from 'axios'; /** * Check if a job version already exists * @param apiClient - Axios client for API calls * @param endpoint - API endpoint to check * @returns True if version exists, false otherwise */ export declare function checkIfVersionExists(apiClient: AxiosInstance, endpoint: string): Promise;