/** * Takes a pattern string that may contain `{{ path.to.value }}` placeholders, * and returns a function that accepts a context object and returns strings that * have had its placeholders filled in by following the dot separated path of * properties accordingly on the context. */ export declare function createPatternResolver(pattern: string): (context: TContext) => string;