import { type AdditionalDataHolder, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions'; export interface Collection extends AdditionalDataHolder, Parsable { /** * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. */ additionalData?: Record; /** * The unique ID of the collection */ guid?: string | null; /** * The name of the collection */ name?: string | null; /** * The URLs of preview images of videos in the collection */ previewImageUrls?: string | null; /** * The IDs of videos to be used as preview icons */ previewVideoIds?: string | null; /** * The total storage size of the collection */ totalSize?: number | null; /** * The number of videos that the collection contains */ videoCount?: number | null; /** * The video library ID that contains the collection */ videoLibraryId?: number | 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 {Collection} */ export declare function createCollectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoCollection(collection?: Partial | undefined): Record void>; /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeCollection(writer: SerializationWriter, collection?: Partial | undefined | null): void;