declare type Indexes = string | 'NOT_AUTHORIZED' | 'NO_ACTIVE_ORDER' | 'NO_ACTIVE_PROMO' | 'APPLY_PROMO_EXISTS' | 'TOTAL_BILLING_NOT_FOUND' | 'ACTIVE_ORDER_EXIST' | 'ORDER_NOT_FOUND' | 'PRICE_NOT_FOUND' | 'RATE_NOT_FOUND' | 'MANAGER_ORDER_NOT_FOUND'; export declare const CODES: { [key in Indexes]: string; }; export declare const TRANSLATIONS: { [key in Indexes]: string; }; declare const result: { CODES: { [x: string]: string; }; TRANSLATIONS: { [x: string]: string; }; }; export default result;