export declare const PASSPORT_FIELDS: readonly ["given_name", "family_name", "nationality", "date_of_birth", "passport_number", "expiry_date", "issuing_country", "gender"]; export declare const NATIONAL_ID_FIELDS: readonly ["given_name", "family_name", "date_of_birth", "id_number", "nationality", "expiry_date", "issuing_country"]; export declare const DRIVING_LICENSE_FIELDS: readonly ["given_name", "family_name", "date_of_birth", "license_number", "categories", "expiry_date", "issuing_authority"]; export declare const VISA_FIELDS: readonly ["visa_type", "issuing_country", "issue_date", "expiry_date", "entries_allowed", "reference_number"]; export type SupportedDocumentType = 'passport' | 'national_id' | 'driving_license' | 'visa'; export declare const DOCUMENT_FIELDS: Record; export declare const DOCUMENT_TYPE_LABELS: Record;