/** * Copyright (c) Microblink Ltd. All rights reserved. */ export declare const defaultTranslations: { "action-alt-camera": string; "action-alt-gallery": string; "action-message": string; "action-message-camera": string; "action-message-camera-disabled": string; "action-message-camera-not-allowed": string; "action-message-camera-in-use": string; "action-message-image": string; "action-message-image-not-supported": string; "camera-disabled": string; "camera-not-allowed": string; "camera-in-use": string; "camera-generic-error": string; "camera-feedback-scan-front": string[]; "camera-feedback-scan-back": string[]; "camera-feedback-flip": string; "camera-feedback-barcode-message": string; "camera-feedback-move-farther": string; "camera-feedback-move-closer": string; "camera-feedback-adjust-angle": string; "camera-feedback-barcode": string[]; "drop-info": string; "drop-error": string; "initialization-error": string; "process-image-box-first": string; "process-image-box-second": string; "process-image-box-add": string; "process-image-upload-cta": string; "process-image-message": string; "process-image-message-inline": string; "process-image-message-inline-done": string; "process-api-message": string; "process-api-retry": string; "feedback-scan-unsuccessful-title": string; "feedback-scan-unsuccessful": string; "feedback-error-generic": string; "check-internet-connection": string; "network-error": string; "scanning-not-available": string; "modal-window-close": string; }; export declare type TranslationKey = keyof typeof defaultTranslations; export declare type TranslationRecord = Partial>>; export declare class TranslationService { translations: TranslationRecord; constructor(alternativeTranslations?: TranslationRecord); i(key: TranslationKey): string | Array; private isExpectedValue; }