/** * A simple entity condition from scorecards config: has `field` and `operator`, optional `value`, `match`, `modifier`. */ export type SimpleEntityCondition = { field: string; operator: string; value?: unknown; match?: unknown; modifier?: 'not'; }; /** * Type guard: checks if the value is a simple entity condition (field + operator shape). * * @param condition - Value to check * @returns `true` when condition has `field` (string) and `operator`; otherwise `false` */ export declare function isSimpleCondition(condition: unknown): condition is SimpleEntityCondition; //# sourceMappingURL=is-simple-condition.d.ts.map