export declare const SUBAGENT_TARGET_KIND_SUBAGENT: "subagent"; export declare const SUBAGENT_ENDED_REASON_COMPLETE: "subagent-complete"; export declare const SUBAGENT_ENDED_REASON_ERROR: "subagent-error"; export declare const SUBAGENT_ENDED_REASON_KILLED: "subagent-killed"; export type SubagentLifecycleEndedReason = typeof SUBAGENT_ENDED_REASON_COMPLETE | typeof SUBAGENT_ENDED_REASON_ERROR | typeof SUBAGENT_ENDED_REASON_KILLED; export declare const SUBAGENT_ENDED_OUTCOME_OK: "ok"; export declare const SUBAGENT_ENDED_OUTCOME_ERROR: "error"; export declare const SUBAGENT_ENDED_OUTCOME_TIMEOUT: "timeout"; export declare const SUBAGENT_ENDED_OUTCOME_KILLED: "killed"; export type SubagentLifecycleEndedOutcome = typeof SUBAGENT_ENDED_OUTCOME_OK | typeof SUBAGENT_ENDED_OUTCOME_ERROR | typeof SUBAGENT_ENDED_OUTCOME_TIMEOUT | typeof SUBAGENT_ENDED_OUTCOME_KILLED;