export type BodyResponseKind = 'json' | 'html' | 'text';
export type CreateBodyResponseInit = {
status?: Response['status'];
headers?: HeadersInit;
};
/**
* Builds a typed HTTP response body for JSON, HTML, or plain text.
*
* @remarks
* Sole internal emission path for adapter response helpers. Not exported from `@ecopages/core`.
*/
export declare function createBodyResponse(kind: BodyResponseKind, data: unknown, init?: CreateBodyResponseInit): Response;