import { ArgsType, SyncHook } from "./syncHook.js"; //#region src/utils/hooks/asyncHook.d.ts type CallbackReturnType = void | false | Promise; declare class AsyncHook extends SyncHook { emit(...data: ArgsType): Promise; } //#endregion export { AsyncHook }; //# sourceMappingURL=asyncHook.d.ts.map