import type { OutputFormat } from '../types.js'; export declare function inferFormat(path: string | undefined): OutputFormat | undefined; export declare function writeOutput(path: string, content: string, options: { readonly force: boolean; readonly mkdir: boolean; }): Promise;