import type { InstrumentationDefinition } from "#public/instrumentation/index.js";
/**
 * Registers the authored instrumentation config and awaits its `setup`
 * callback.
 *
 * Called once by the generated instrumentation Nitro plugin at server
 * startup. Subsequent calls overwrite the previous value.
 *
 * @internal — not part of the public API.
 */
export declare function registerInstrumentationConfig(config: InstrumentationDefinition, input: {
    readonly agentName: string;
}): Promise<void>;
