declare const BASE_URL: string;
declare const API_BASE = "api";
declare const ENDPOINTS: {
    LOGIN: string;
    RESET_PASSWORD_REQUEST: string;
    RESET_PASSWORD: string;
    TOKEN_REFRESH: string;
    ADDRESSES: string;
    APPLY_COUPON: string;
    CHANGE_ITEM_QUANTITY_BY_ORDER_TOKEN: string;
    COMPLETE_ORDER_BY_TOKEN: string;
    COMPLETION_INFORMATION: string;
    COUNTRIES: string;
    CUSTOMERS: string;
    ITEM_BY_ID: string;
    ORDER_BY_TOKEN: string;
    PATCH_ORDER_ADDRESS: string;
    PAYMENT_METHODS_BY_ORDER: string;
    PAYMENT_METHOD_BY_ID: string;
    TAXONS: string;
    TAXON_BY_CODE: string;
    API_BASE_URL: string;
    BASE_URL: string;
};
export { API_BASE, BASE_URL, ENDPOINTS };
