import type * as Rulebricks from "../index.js"; /** * The schema definition for a context. */ export interface ContextSchema { /** User-defined base fields for the context. */ base?: Rulebricks.ContextSchemaField[] | undefined; /** Fields derived from bound rule/flow outputs. */ derived?: Rulebricks.ContextSchemaField[] | undefined; }