/** * Task: * * Create a file with the given text. */ export declare function writeFile(path: string, text: string, { silent }?: { silent?: boolean; }): void;