import { Command } from 'commander';
export interface LintCommandOptions {
    cspell?: boolean;
    glob: string | string[];
    debug?: boolean;
}
export declare const lintCommand: Command;
