import { type AdditionalDataHolder, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions'; /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {TenantMetadata} */ export declare function createTenantMetadataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param TenantMetadata The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoTenantMetadata(tenantMetadata?: Partial | undefined): Record void>; /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param TenantMetadata The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ export declare function serializeTenantMetadata(writer: SerializationWriter, tenantMetadata?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; /** * Tenant data calculated for the architecture report. */ export interface TenantMetadata extends AdditionalDataHolder, Parsable { /** * The count of total devices within the tenant */ totalDeviceCount?: number | null; /** * The count of total guests within the tenant */ totalGuestCount?: number | null; /** * The count of total members within the tenant */ totalMemberCount?: number | null; /** * The count of total users within the tenant */ totalUserCount?: number | null; }