import { UserEntity, GroupEntity, OrganizationEntity, ApplicationEntity } from "../../.."; import { Storage, Database, Deployment, SERVER_APPLICATION_ENVIRONMENT, SERVER_APPLICATION_LANGUAGE } from "../service.entity"; export declare class SubmitServerApplicationServiceDto { name: string; liveDomain: string; liveUrl: string; repository: string; language: SERVER_APPLICATION_LANGUAGE; environment: SERVER_APPLICATION_ENVIRONMENT; database: Database; storage: Storage; deployment: Deployment; applicationId: string; } export declare class CreateServerApplicationServiceDto { name: string; liveDomain: string; liveUrl: string; repository: string; language: SERVER_APPLICATION_LANGUAGE; environment: SERVER_APPLICATION_ENVIRONMENT; database: Database; storage: Storage; deployment: Deployment; application: ApplicationEntity; organization: OrganizationEntity; groups: GroupEntity[]; createdByUser: UserEntity; }