import { ITokenService } from "./ITokenService"; export declare enum BuiltinTokenNames { /** * Similar as 'inputQueryText' to match the SharePoint search token */ searchTerms = "searchTerms", /** * The current selected verticals if any */ verticals = "verticals" } export declare class TokenService implements ITokenService { /** * This regex only matches expressions enclosed with single, not escaped, curly braces '{}' */ private genericTokenRegexp; /** * The list of static tokens values set by the Web Part as context */ private tokenValuesList; setTokenValue(token: string, value: any): void; getTokenValue(token: string): string; resolveTokens(inputString: string): string; }