import { FileDescriptor, TextDescriptor } from '../../../types/FieldDescriptor'; import { CuringDescriptorState } from '../types'; import { CuringSectionDescriptor } from './section'; export declare const MAX_FILE_SIZE_BYTES: number; /** * Acceptable-documents body that sits below the section title and above the * file picker. Static text — does not vary with user state. */ export declare const fileUploadIntroDescriptor: TextDescriptor; /** * The file picker itself. Required for v1 — descriptor-level validation * gates the submit button. Mimetype + size errors surface here too; the * `getAccept` attribute is the browser-side hint (a soft filter — users * can still pick anything, hence the runtime mimetype check in `getErrors`). */ export declare const fileUploadDescriptor: FileDescriptor; /** * Step 1 — wraps the intro paragraph and file picker under the "Upload * documentary evidence" title so the renderer emits a `
` with proper header styling. */ export declare const fileUploadSection: CuringSectionDescriptor;