export interface RunOptions { config?: string; output?: 'table' | 'json' | 'sarif' | 'github-actions'; severity?: 'off' | 'info' | 'warn' | 'warning' | 'error'; tags?: (string | number)[]; rules?: string[]; excludeRules?: string[]; stats?: boolean; fix?: boolean; annotationsLimit?: number; summary?: 'json' | 'text'; summaryPath?: string; changedOnly?: boolean; changedListPath?: string; outputPath?: string; } /** * Run recheck on files */ export declare function runCommand(path: string | undefined, options: RunOptions): Promise; //# sourceMappingURL=run.d.ts.map