import { HttpService } from '../../external/services/http.service'; declare class AssetService extends HttpService { baseApiUrl: string; get(q?: string, limit?: number, page?: number, assetType?: string): Promise; update(assetId: string, name: string): Promise; delete(assetId: string): Promise; } export declare const assetService: AssetService; export {};