/** * Detach capability — start a detached background Bash command. * * Returns immediately with a runId. The command continues even if Franklin * exits or the user closes their terminal. Manage running tasks with * `franklin task list / tail / wait / cancel`. */ import type { CapabilityHandler } from '../agent/types.js'; export declare const detachCapability: CapabilityHandler;