import type { ParsedJDLDeployment } from '../types/parsed.ts';
export default class JDLDeployment {
    deploymentType: string;
    appsFolders?: string[];
    directoryPath?: string;
    gatewayType?: string;
    kubernetesServiceType?: string;
    istio?: boolean;
    ingressDomain?: string;
    ingressType?: string;
    storageType?: string;
    monitoring?: string;
    clusteredDbApps?: string[];
    constructor(args: ParsedJDLDeployment);
    toString(): string;
}
