import { t as CameraStream } from "./camera-9wWD-pwg.js"; //#region src/modules/document-upload/types.d.ts /** * Configuration for document upload (e.g., third ID capture). * The documentType determines the backend endpoint query parameter. */ type DocumentUploadConfig = { /** Document type for the upload endpoint (e.g., 'thirdId') */ documentType: string; }; type DocumentUploadContext = { config: DocumentUploadConfig; stream: CameraStream | undefined; imageBase64: string | undefined; progress: number; error: string | undefined; }; type DocumentUploadInput = { config: DocumentUploadConfig; }; //#endregion export { DocumentUploadContext as n, DocumentUploadInput as r, DocumentUploadConfig as t };