/** Client-owned copy only. Server error strings and details are never displayed. */ export declare const quoteUnavailableMessages: Readonly<{ HOSTED_PROVIDER_UNAVAILABLE: "Hosted execution is temporarily unavailable on this Skills instance."; HOSTED_CONNECTORS_UNAVAILABLE: "Hosted connector execution is unavailable on this Skills instance."; SKILL_IMPLEMENTATION_UNAVAILABLE: "This skill has no hosted execution implementation."; HOSTED_PRICING_UNAVAILABLE: "Hosted execution is unavailable while this skill's pricing is reviewed."; RUNTIME_ALLOWLIST_REQUIRED: "Hosted execution is unavailable until this Skills instance enables its skill catalog."; RUNTIME_SKILL_NOT_ALLOWED: "This skill is not enabled for hosted execution on this Skills instance."; }>; export type RemoteQuoteUnavailableCode = keyof typeof quoteUnavailableMessages; /** Read one small error body, bounded even when a peer sends headers then stalls. */ export declare function readQuoteUnavailableCode(response: Response): Promise;