import { type H3Event } from 'h3';
/**
 * Callback for the 'beforeResponse' nitro hook.
 *
 * This is called after a valid response was built, but before it is sent.
 */
export declare function onBeforeResponse(event: H3Event, response: {
    body?: unknown;
}): void;
