import { type TSESLint, type TSESTree } from "@typescript-eslint/utils"; /** * @packageDocumentation * Shared AST pattern helpers for boolean-pair TypeFest rules. */ /** * Text for a two-element boolean tuple argument. */ export type BooleanPairTupleArgumentText = Readonly<{ leftTypeText: string; rightTypeText: string; }>; /** * Extract element text from a type reference whose only argument is a two-item * tuple. */ export declare const getTwoElementTupleArgumentText: (typeReference: Readonly, sourceCode: Readonly) => BooleanPairTupleArgumentText | undefined; //# sourceMappingURL=boolean-pair-type-patterns.d.ts.map