import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class AssetsService { private http; constructor(http: HttpClient); getPhonecode(): Observable; getCurrency(): Observable; getcountries(): Observable; getStates(): Observable; getNationalities(): Observable; getLanguages(): Observable; static ɵfac: i0.ɵɵFactoryDef; static ɵprov: i0.ɵɵInjectableDef; } export interface Phonecodes { countries: Phonecode; } export interface Phonecode { code: string; name: string; } export interface states { name: string; id: number; country_id: number; } export interface Country { name: string; id: number; sortname?: string; phonecode?: number; } export interface Language { name: string; } export interface Nationality { nationalities: string; upperNationality: string; }