import BaseCommand from '../base-command';
declare class LintCommand extends BaseCommand<typeof LintCommand> {
    static description: string;
    run(): Promise<void>;
}
export default LintCommand;
