import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { IArtboardElementVm } from '../models/artboard-element-vm.model'; import { IArtboardElementIm } from '../models/artboard-element-im.model'; import { IArtboardElementUm } from '../models/artboard-element-um.model'; import { IArtboardLibConfig } from '../models/artboard-lib-config.model'; import * as i0 from "@angular/core"; export declare class ArtboardElementService { private http; private config; private baseUrl; constructor(http: HttpClient, config: IArtboardLibConfig); get(guid: string): Observable; post(artboardElementIm?: IArtboardElementIm): Observable; put(artboardElementUm?: IArtboardElementUm): Observable; del(guid: string): Observable; private createHeaders; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }