import { CachedValues } from "../chat-bot-action.service"; import { UrlParserService } from "./url-parser.service"; import { IParser } from "./iparser"; export declare class ParameterParserService implements IParser { private _url; constructor(_url: UrlParserService); parseString(str: string, cachedResponses: CachedValues[]): string; private replaceArrayOccurances(str, cachedResponses); private replaceStringOccurances(str, cachedResponses); }