import type { Hook as HookEntity } from '@workflow/world'; import type { Hook, HookOptions } from '../create-hook.js'; /** * NOTE: This is the implementation of `defineHook()` that is used in workflow contexts. */ export declare function defineHook(): { create(options?: HookOptions): Hook; resume(_token: string, _payload: TInput): Promise; }; //# sourceMappingURL=define-hook.d.ts.map