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 {Ring} */ export declare function createRingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param Ring The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoRing(ring?: Partial | undefined): Record void>; /** * Object containing channel ring configuration. */ export interface Ring extends AdditionalDataHolder, Parsable { /** * Flag that indicates if the ring should be operating off of the latest version number provided by the channel (`true`) or the previous (`false`). */ latest?: boolean | null; /** * Ring number that this configuration belongs to. */ number?: number | null; } /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param Ring The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ export declare function serializeRing(writer: SerializationWriter, ring?: Partial | undefined | null, isSerializingDerivedType?: boolean): void;