import { Readable, Writable } from 'stream'; import { Syntax } from '../pretty'; export type FormatOptions = { fromSyntax?: Syntax; toSyntax?: Syntax; language?: string; }; export declare function formatCommand(files: string[], stdin: Readable | null, stdout: Writable | null, options: FormatOptions): Promise; //# sourceMappingURL=formatCommand.d.ts.map