import { Tree } from '@nx/devkit'; export interface FileContents { path: string; content?: string | string[]; isBinary?: boolean; children?: Record; } export declare function getRecursiveFileContents(tree: Tree, path: string, includeBinaries?: boolean): Record; export declare function formatOutput(value: string): string[];