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 {File} */ export declare function createFileFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoFile(file?: Partial | undefined): Record void>; export interface File 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 ArrayNumber property */ arrayNumber?: number | null; /** * The Checksum property */ checksum?: string | null; /** * The ContentType property */ contentType?: string | null; /** * The DateCreated property */ dateCreated?: Date | null; /** * The Guid property */ guid?: string | null; /** * The IsDirectory property */ isDirectory?: boolean | null; /** * The LastChanged property */ lastChanged?: Date | null; /** * The Length property */ length?: number | null; /** * The ObjectName property */ objectName?: string | null; /** * The Path property */ path?: string | null; /** * The ReplicatedZones property */ replicatedZones?: string | null; /** * The ServerId property */ serverId?: number | null; /** * The StorageZoneId property */ storageZoneId?: number | null; /** * The StorageZoneName property */ storageZoneName?: string | null; /** * The UserId property */ userId?: string | null; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeFile(writer: SerializationWriter, file?: Partial | undefined | null): void;