/// import * as execa from 'execa'; export declare type Linter = 'yarn' | 'tsc' | 'tslint' | 'prettier' | 'commitlint'; export interface Options { fix?: boolean; } export declare type Result = execa.ExecaReturns & { error?: Error; }; export default function (opts: Options): string[];