import type { CustomAttribute } from './CustomAttribute'; export type Application = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; readonly id?: string; name: string; applicationType: string; brokerType: Application.brokerType; applicationDomainId: string; readonly numberOfVersions?: number; customAttributes?: Array; type?: string; }; export declare namespace Application { enum brokerType { KAFKA = "kafka", SOLACE = "solace" } }