import type { ModifyConfigFn, OnPrepareFn, OnResetFn } from '../types/server/hooks'; import type { DeepPartial } from '../types/utils'; export type { OnResetFn, OnPrepareFn, ModifyConfigFn }; export declare function initHooks(): { modifyConfig: import("..").AsyncHook>>; onPrepare: import("..").AsyncHook; onReset: import("..").AsyncHook; }; export type Hooks = ReturnType>;