import type { ConditionContext } from '../interfaces/condition-context-interface.js'; import { Condition } from './condition.js'; /** * Blocks a trip action when the system is disarmed and neither * `override_off` nor the override switch is in use. */ export declare class NotArmedCondition extends Condition { readonly name = "not-armed"; evaluate({ state, options, value, origin, log }: ConditionContext): boolean; }