/*! * @license * Copyright Squiz Australia Pty Ltd. All Rights Reserved. */ import { AxiosInstance } from 'axios'; import { JobManifestV1 } from '../../../../manifest'; /** * Get and validate a job manifest * @param apiClient - Axios client for API calls * @param folderPath - Path to the job folder * @param logger - Logger instance * @returns The validated manifest */ export declare function getAndValidateManifest(apiClient: AxiosInstance, folderPath: string): Promise;