import AbstractError from '../../../error/abstract-error';
export declare class FailedLoadForTag extends AbstractError {
    componentsWithRelativePaths: string[];
    componentsWithFilesNotDir: string[];
    constructor(componentsWithRelativePaths: string[], componentsWithFilesNotDir: string[]);
    getErrorMessage(): string;
    getRelativePathsErrorOutput(): string;
    getCompWithFilesErrorOutput(): string;
}
