import { type AdditionalDataHolder, type Guid, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions'; /** * Object containing IDs necessary to perform user authentication in the EntraID. */ export interface ContextIdList extends AdditionalDataHolder, Parsable { /** * Application ID that should be used in Access Tokens as the audience and the endpoint necessary for auth code flows. */ appId?: Guid | null; /** * Tenant ID necessary for authority host URL configuration and UI customization. */ tenantId?: Guid | 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 {ContextIdList} */ export declare function createContextIdListFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param ContextIdList The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoContextIdList(contextIdList?: Partial | undefined): Record void>; /** * Serializes information the current object * @param ContextIdList 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 serializeContextIdList(writer: SerializationWriter, contextIdList?: Partial | undefined | null, isSerializingDerivedType?: boolean): void;