import type { Rule } from "eslint";
type Nullable<Object extends object> = {
    [Key in keyof Object]: Object[Key] | null;
};
export type WithParent<BaseNode> = BaseNode & Nullable<Partial<Rule.NodeParentExtension>>;
export {};
//# sourceMappingURL=estree.d.ts.map