import BaseCommand from '../base'; export interface FormattedFile { path: string; unchanged: boolean; } export default class Format extends BaseCommand { static description: string; static examples: string[]; static args: {}; static flags: { readonly 'order-by': import("@oclif/core/lib/interfaces").OptionFlag; readonly config: import("@oclif/core/lib/interfaces").OptionFlag; }; run(): Promise; }