import type { Rule } from 'eslint'; /** * Walks up the AST from `node` looking for an enclosing `TryStatement`. * Returns the range of the try-block's direct child that contains `node`, * or `null` if the node is unwrapped or sits inside a catch/finally block * (those blocks can also throw). */ export declare function findTryStatementRange(node: Rule.Node): [number, number] | null; //# sourceMappingURL=find-try-statement.d.ts.map