import _m0 from 'protobufjs/minimal'; import { ExpirationConfig } from '../../../../../yandex/cloud/ai/common/common'; export declare const protobufPackage = "yandex.cloud.ai.files.v1"; export interface File { /** Unique identifier of the file. */ id: string; /** ID of the folder that the file belongs to. */ folderId: string; /** Name of the file. */ name: string; /** Description of the file. */ description: string; /** MIME type of the file, indicating the file's format (e.g., "application/pdf") */ mimeType: string; /** Identifier of the subject who created this file. */ createdBy: string; /** Timestamp representing when the file was created. */ createdAt?: Date; /** Identifier of the subject who last updated this file. */ updatedBy: string; /** Timestamp representing the last time this file was updated. */ updatedAt?: Date; /** Configuration for the expiration of the file, defining when and how the file will expire. */ expirationConfig?: ExpirationConfig; /** Timestamp representing when the file will expire. */ expiresAt?: Date; /** Set of key-value pairs that can be used to organize and categorize the file. */ labels: { [key: string]: string; }; } export interface File_LabelsEntry { key: string; value: string; } export declare const File: { encode(message: File, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): File; fromJSON(object: any): File; toJSON(message: File): unknown; fromPartial, never>) | undefined; expiresAt?: Date | undefined; labels?: ({ [x: string]: string | undefined; } & { [x: string]: string | undefined; } & Record, never>) | undefined; } & Record, never>>(object: I): File; }; export declare const File_LabelsEntry: { encode(message: File_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): File_LabelsEntry; fromJSON(object: any): File_LabelsEntry; toJSON(message: File_LabelsEntry): unknown; fromPartial, never>>(object: I): File_LabelsEntry; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};