/** * Helper functions for string-based operations from files. * * @module */ /** * Helper function to format a text string with Prettier. * * This is useful to ensure that a file is correctly formatted after modifying it but before writing * it back to disk. */ export declare function formatWithPrettier(text: string, language: string, repoRoot: string): Promise; /** * Helper function to set the content between two HTML comments. * * For example, if the string has two lines containing "" and "", then you would call this function with a marker name of "RULES_TABLE". * * @returns The modified string. */ export declare function setContentInsideHTMLMarker(original: string, text: string, markerName: string): string; //# sourceMappingURL=string.d.ts.map