import { type TSESTree } from "@typescript-eslint/utils"; /** * Compare two expressions for structural equivalence after unwrapping * transparent TypeScript wrappers. * * @param left - Left-hand expression. * @param right - Right-hand expression. * * @returns `true` when both expressions are structurally equivalent. */ export declare const areEquivalentExpressions: (left: Readonly, right: Readonly) => boolean; /** * Compare two type nodes for structural equivalence. * * @param left - Left-hand type node. * @param right - Right-hand type node. * * @returns `true` when both type nodes are structurally equivalent. */ export declare const areEquivalentTypeNodes: (left: Readonly, right: Readonly) => boolean; //# sourceMappingURL=normalize-expression-text.d.ts.map