import { LocalDataService } from "@haventec/common-js/ts"; export declare class ApplicationService { domainUrl: string; private localDataService; private listUrl; private getUrl; private getAllUrl; private updateUrl; private basePath; private http; constructor(domainUrl: string, localDataService: LocalDataService); list(page: number, size: number): Promise<{}>; get(name: string): Promise<{}>; getAll(): Promise<{}>; update(name: string, description: string, uuid: string, apiKey: string): Promise<{}>; }