import type { CloudToken } from './CloudToken'; import type { CommonName } from './CommonName'; import type { OrganizationIntegrations } from './OrganizationIntegrations'; import type { SempV2Authentication } from './SempV2Authentication'; import type { ServiceRegistryType } from './ServiceRegistryType'; export declare type Organization = { name: CommonName; sempV2Authentication?: SempV2Authentication; 'cloud-token'?: (string | CloudToken); integrations?: OrganizationIntegrations; serviceRegistry?: ServiceRegistryType; };