interface OCRData { code: string; facePhotoUrl?: string; backPhotoUrl?: string; } declare const OCR: (data: OCRData) => Promise; export default OCR;