/** * Copyright 2017 Yahoo Holdings Inc. * Licensed under the terms of the MIT license. See LICENSE file in project root for terms. */ export declare const TEMPLATE_REGEX: RegExp; /** * Indicated whether the value is a template string * there may be further constraints on its "validity" for Cerebro, which are not imposed here * * @param {string} value * @return {Boolean} */ export declare function isTemplate(value: string): boolean;