import type { Fn } from '../../types/internal';
/**
 * Set custom `node:inspect` and toJSON presentation (with function code) on function.
 */
export declare const setCustomInspectOnFunction: <Args extends readonly unknown[], Return, This>(fn: Fn<Args, Return, This>) => void;
