import type { File, FileMap } from '@dynatrace/devkit';
/**
 * Writes the file map to the filesystem.
 * Only updated, created or deleted files are written.
 */
export declare function writeChanges(
/** The project root path */
root: string, 
/** The file map */
fileMap: FileMap): Promise<void>;
/** Prints a formatted string for a file inside the file map with its status and its size */
export declare function formattedModeString(filepath: string, file: File): string;
