import { type AvdIntermediary, type Intermediary } from '../../managedObject/index.js'; import { type AdditionalDataHolder, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions'; export interface Avd extends AdditionalDataHolder, Parsable { /** * The OdataCount property */ odataCount?: number | null; /** * The OdataNextLink property */ odataNextLink?: string | null; /** * The value property */ value?: Avd_value[] | null; } export interface Avd_value extends Intermediary, Parsable { /** * The properties property */ properties?: AvdIntermediary | null; } /** * 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 {Avd_value} */ export declare function createAvd_valueFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * 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 {Avd} */ export declare function createAvdFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param Avd The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoAvd(avd?: Partial | undefined): Record void>; /** * The deserialization information for the current model * @param Avd_value The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoAvd_value(avd_value?: Partial | undefined): Record void>; /** * Serializes information the current object * @param Avd 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 serializeAvd(writer: SerializationWriter, avd?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; /** * Serializes information the current object * @param Avd_value 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 serializeAvd_value(writer: SerializationWriter, avd_value?: Partial | undefined | null, isSerializingDerivedType?: boolean): void;