export interface ManagedAgentHostCommandContextOptions { env?: NodeJS.ProcessEnv; dataDir?: string; startPid?: number; } /** * Detect commands launched from a botmux-managed AI CLI rather than a trusted * host terminal. Environment hints cover detached/workflow launches; the * daemon-owned PID marker covers shells which scrub those hints. Child-provided * HOME/SESSION_DATA_DIR are deliberately ignored when resolving the authority * store. This is an early UX/consumption guard; OS credential isolation remains * the actual secret boundary. */ export declare function isManagedAgentHostCommandContext(options?: ManagedAgentHostCommandContextOptions): boolean; //# sourceMappingURL=host-command-context.d.ts.map