import type { Package } from '@sap-ux/ui5-application-writer'; import type { FreestyleApp } from './types.js'; import type { Logger } from '@sap-ux/logger'; import type { Editor } from 'mem-fs-editor'; /** * Generates OPA tests for a freestyle application. * * @param {string} basePath - The base directory path. * @param {FreestyleApp} ffApp - The freestyle application configuration. * @param {boolean} addMock - Whether to include the UI5 mock YAML configuration. * @param {Package} packageJson - The package.json object to update. * @param {Editor} [fs] - Optional file system editor instance. * @param {Logger} [log] - Optional logger instance. * @returns {Promise} - The modified file system editor. */ export declare function generateOPATests(basePath: string, ffApp: FreestyleApp, addMock: boolean, packageJson: Package, fs?: Editor, log?: Logger): Promise; //# sourceMappingURL=generateOPATests.d.ts.map