import { AnyFn, Hooks } from './types';
/**
 * Create a hookable function.
 *
 * @param fn - The function to make hookable.
 *
 * @public
 */
export declare function createHookable<F extends AnyFn>(fn: F): F & Hooks<F>;
//# sourceMappingURL=hookable.d.ts.map