import CommandBase from '../../command.base.js';
export default class Validate extends CommandBase<typeof Validate> {
    static aliases: string[];
    static description: string;
    static usage: string;
    static examples: string[];
    private readonly _typeRegex;
    private readonly _issueRegex;
    getProblems(path: string): Promise<string[]>;
    run(): Promise<void>;
}
