/** * Minimal executable safety check for RemoteClaw fork. * * Rejects values containing obvious shell metacharacters that indicate * command injection (`;`, `|`, `&`, backticks, `$(`, `>`, `<`). */ export declare function isSafeExecutableValue(value: string): boolean;