import { EbextensionsToInject } from './config-types'; /** * Given a list of ebextensions, adds them to the given archive * * @param {Object} ebextensions - The list of ebextensions files as strings * @param {String} archivePath - The path to the archive file to add them to. */ export declare function addEbextensionsToDir(ebextensions: EbextensionsToInject, artifactDir: string): boolean; export declare function deleteAddedEbExtensionsFromDirectory(ebextensions: EbextensionsToInject, artifactDir: string): boolean;