/** * @license * Copyright Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * An object of type TemplateStringsArray represents the literal part(s) of a * template literal. This function checks if a TemplateStringsArray object is * actually from a template literal. * * @param templateObj This contains the literal part of the template literal. * @param numExprs The number of embedded expressions */ export declare function assertIsTemplateObject(templateObj: TemplateStringsArray, numExprs: number): void;