/**
 * Comments out the current entry of a specific key in a yaml document and creates a new value next to it
 * @param key key in yaml document to comment out
 * @param newValue new value to add in the document
 */
export declare function replaceYamlValue(input: any, key: any, newValue: any): string;
export declare function migrateToEndpoint(input: any, endpoint: any): string;
