import { type TSESTree } from '@typescript-eslint/typescript-estree'; type Node = TSESTree.Node; export type TemplateLiteral = TSESTree.TemplateLiteral; export declare function guardTemplateLiteral(node: Node, quasis?: string[], _value?: string): node is TemplateLiteral; /** * @deprecated use guardTemplateLiteral because this clashes with a * typescript internal name (which makes it harder to import this) */ export declare const isTemplateLiteral: typeof guardTemplateLiteral; export {};