import { Rule } from "eslint"; import { Expression, PrivateIdentifier } from "estree-jsx"; /** Check whether a property name is of a given value. * Property can either be of an ObjectExpression - {propName: "value"} or MemberExpression - someObject.propName */ export declare function propertyNameMatches(context: Rule.RuleContext, key: Expression | PrivateIdentifier, computed: boolean, name: string): boolean; //# sourceMappingURL=propertyNameMatches.d.ts.map