export declare const litAttachmentsTabDocumentSchema: { readonly $id: "Document"; readonly type: "object"; readonly properties: { readonly id: { readonly type: "string"; }; readonly name: { readonly type: "string"; }; readonly dmsf_src: { readonly type: "string"; }; readonly file_type: { readonly type: "string"; }; readonly meta: { readonly type: "array"; readonly items: { readonly type: "string"; }; }; readonly thumbnail: { readonly type: "string"; readonly description: "Base64 data URL or URL to thumbnail image (provided by backend for non-PDF files)"; }; readonly dateOfUpload: { readonly type: "string"; readonly description: "Date of upload in format DD.MM.YYYY HH:mm"; }; readonly userName: { readonly type: "string"; readonly description: "Full name of the user who uploaded the document"; }; }; readonly required: readonly ["id"]; readonly additionalProperties: false; };