import type { AsyncHook, AsyncInterruptHook, AsyncPipelineHook, CollectAsyncHook, CollectSyncHook, SyncHook } from './types/hooks'; export declare function createAsyncInterruptHook any>(): AsyncInterruptHook; export declare function createSyncHook any>(): SyncHook; export declare function createAsyncHook any>(): AsyncHook; export declare function createCollectAsyncHook any>(): CollectAsyncHook; export declare function createCollectSyncHook any>(): CollectSyncHook; export declare function createAsyncPipelineHook any>(): AsyncPipelineHook;