export declare function outputFile({ file_path, file_content, mode, silent }: {
    file_path: string;
    file_content: string | void | false;
    mode?: number;
    silent?: boolean;
}): void;
export default outputFile;
