import { Hookscope } from "./hookscope.js"; export declare class Hooks { #private; get scope(): Hookscope; increment(): { scope: Hookscope; position: number; }; wrap(scope: Hookscope, fn: () => Ret): Ret; } export declare const hooks: Hooks;