import type { PipelineExecutionResult } from '../../../handlers/types.js'; export declare function extractResponseStatus(response: unknown): number | undefined; export declare function normalizeProviderResponse(response: unknown): PipelineExecutionResult; export declare function extractClientModelId(metadata: Record, originalRequest?: Record): string | undefined; export declare function extractProviderModel(payload?: Record): string | undefined; export declare function buildProviderLabel(providerKey?: string, model?: string): string | undefined; export declare function resolveRequestSemantics(processed?: Record, standardized?: Record): Record | undefined;