import { type AdditionalDataHolder, type ApiError, 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 {HealthReport} */ export declare function createHealthReportFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param HealthReport The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoHealthReport(healthReport?: Partial | undefined): Record void>; /** * Health report that indicates if a service is down or not that the data gateway relies on. */ export interface HealthReport extends AdditionalDataHolder, ApiError, Parsable { /** * Flag that indicates if the client side authentication validation is working or not. */ authClient?: boolean | null; /** * Flag that indicates if the server side authentication is working or not. */ authServer?: boolean | null; /** * Flag that indicates if the bulk storage system is down (`false`) or not (`true`). False indicate the service is not working, true indicates the service is working. */ bulkStorage?: boolean | null; /** * Flag that indicates if the Cloud Matrix system is down (`false`) or not (`true`). False indicate the service is not working, true indicates the service is working. */ cloudMatrix?: boolean | null; /** * Flag that indicates if the ORM (Database) system is down (`false`) or not (`true`). False indicate the service is not working, true indicates the service is working. */ database?: boolean | null; } /** * Serializes information the current object * @param HealthReport The instance to serialize from. * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param writer Serialization writer to use to serialize this model */ export declare function serializeHealthReport(writer: SerializationWriter, healthReport?: Partial | undefined | null, isSerializingDerivedType?: boolean): void;