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