import { Logger } from '../../util/logger'; import { DefaultUpdater } from '../default'; /** * Updates a manifest.json file. * @see https://github.com/googleapis/google-cloud-php/blob/master/docs/manifest.json */ export declare class PHPManifest extends DefaultUpdater { /** * Given initial file contents, return updated contents. * @param {string} content The initial content * @returns {string} The updated content */ updateContent(content: string, logger?: Logger): string; }