import { ComponentIssue } from './component-issue'; type DataType = { envId: string; componentId: string; }; export declare class ExternalEnvWithoutVersion extends ComponentIssue { description: string; data: DataType; solution: string; isTagBlocker: boolean; formatSolution(): string; dataToString(): string; } export {};