import { GuidValue } from "@omnia/fx/models"; export interface SearchTokensReplacement { [tokenKey: string]: string; } export declare abstract class SearchTokenProvider { abstract readonly title: string; abstract readonly providerId: GuidValue; abstract readonly tokens: string[]; abstract readonly tokenRegex?: RegExp; resolveSearchTokens: (tokensToResolve: Array) => Promise; }