import { HttpClientRequestOptions, IConfiguration, SvgDefinition, SvgSourceModifier } from "../common-types"; import { BaseHttpService } from "./base-http.service"; import * as i0 from "@angular/core"; export declare class LocalHttpService extends BaseHttpService { protected svgs: Record; protected images: Record>; get name(): string; get config(): IConfiguration; protected get withCredentials(): boolean; protected initService(): void; url(url: string): string; get(url: string, options?: HttpClientRequestOptions, body?: any): Promise; getImage(url: string): Promise; svgUrlFromSource(sourceStr: string, modifier?: SvgSourceModifier): string; svgFromSource(sourceStr: string, modifier?: SvgSourceModifier): Promise; getSvgUrl(url: string, modifier?: SvgSourceModifier): Promise; getSvgImage(url: string, modifier?: SvgSourceModifier): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }