import type { z } from 'zod'; import type { ChatCompletionResponse } from '../../../types/provider/index.js'; /** Native constraints are transport assistance; local validation still owns acceptance. */ export declare function parseNativeCandidate(schema: z.ZodType, response: ChatCompletionResponse, signal: AbortSignal): Promise<{ success: true; value: unknown; } | { success: false; }>; //# sourceMappingURL=native-output.d.ts.map