import { LogicalExpression, Node } from 'estree'
/**
 * Checks whether the given AST node represents a disjunction (logical OR).
 *
 * @param node - The AST node to check.
 * @returns True if the node is a LogicalExpression with operator `||`.
 */
export declare function isDisjunction(node: Node): node is LogicalExpression
