import { Currency } from './currency'; import { Locale } from './locale'; import { Features } from './features'; export declare class Conf { api_password: string; api_url: string; api_user: string; expire_at: string; id: number; is_published: boolean; is_under_construction: boolean; is_active: boolean; images_url: string; locales: Locale[]; currencies: Currency[]; last_modified: string; login: any; original: any; accessToken: AccessToken; userId: number; features: Features; ADVANCED_FILTERS: boolean; COMPARE: boolean; WISH_LIST: boolean; REVIEWS: boolean; } export declare abstract class AccessToken { access_token: string; expires_in: number; refresh_token: string; scope: string; token_type: string; }