import type * as Rulebricks from "../index.js"; /** * Historical values for context instance fields. */ export interface ContextInstanceHistory { /** Combined identifier in format 'contextSlug:instanceId'. */ context?: string | undefined; /** Map of field keys to arrays of historical values, newest first. */ history?: Record | undefined; }