import type { AbapDeployConfig, CliOptions } from '../types/index.js'; /** * Tries to read the version of the modules package.json but in case of an error, it returns the manually maintained version matching major.minor of the module. * * @returns the version of the deploy tooling. */ export declare function getVersion(): any; /** * Read the deployment configuration from a ui5*.yaml file. * * @param path - path to the ui5*.yaml file * @returns the configuration object or throws an error if it cannot be read. */ export declare function getDeploymentConfig(path: string): Promise; /** * Merge the configuration from the ui5*.yaml with CLI options. * * @param taskConfig - base configuration from the file * @param options - CLI options * @returns the merged config */ export declare function mergeConfig(taskConfig: AbapDeployConfig, options: CliOptions): Promise; //# sourceMappingURL=config.d.ts.map