export declare const litAttachmentsTabSchema: { readonly $id: "AttachmentsTab"; readonly type: "object"; readonly properties: { readonly hideTabWhen: { readonly type: "boolean"; }; readonly type: { readonly type: "string"; readonly enum: readonly ["compact", "select"]; }; readonly initialSelection: { readonly type: "string"; }; readonly documents: { readonly type: "array"; readonly items: { 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; }; }; readonly scale: { readonly type: "number"; }; readonly isDocumentLoading: { readonly type: "boolean"; }; readonly enableSettings: { readonly type: "boolean"; }; readonly enableThumbnails: { readonly type: "boolean"; readonly description: "Enable document thumbnails in compact and select views"; }; readonly thumbnailSize: { readonly type: "number"; readonly description: "Size of thumbnails in pixels"; }; readonly enableAdditionalInformation: { readonly type: "boolean"; readonly description: "Enable display of dateOfUpload and userName in document list"; }; readonly enableThumbnailDetail: { readonly type: "boolean"; readonly description: "Enable detailed thumbnail hover preview"; }; readonly thumbnailPreviewMaxWidth: { readonly type: "number"; readonly description: "Max width of the thumbnail hover preview in pixels"; }; readonly thumbnailPreviewMaxHeight: { readonly type: "number"; readonly description: "Max height of the thumbnail hover preview in pixels"; }; readonly enableSearchInDocuments: { readonly type: "boolean"; readonly description: "Enable search/filter input for documents in compact mode"; }; readonly userLang: { readonly type: "string"; readonly description: "Locale for date formatting (e.g., \"cs\", \"en\", \"de\")"; }; readonly dateFormat: { readonly type: readonly ["string", "null"]; readonly description: "Custom date format to use (e.g., \"dd.MM.yyyy\"). If null, uses locale-based format"; }; }; readonly additionalProperties: false; };