import { EditorResponse, Id } from '../types/CommonTypes'; export declare function throwEditorResponseError(response: EditorResponse): never; /** * Variable-specific failure hook * Throws VariableValueConstrainsViolationError when the response matches a recognized constraint error; * otherwise returns so `getEditorResponseData` falls back to `throwEditorResponseError`. */ export declare function throwVariableException(response: EditorResponse, context: { id: Id; }): void;