import { Context } from "../../agent/Context";
import { InterceptorResult } from "../../agent/hooks/InterceptorResult";
/**
 * This function goes over all the different input types in the context and checks
 * if it's a possible shell Injection, if so the function returns an InterceptorResult
 */
export declare function checkContextForShellInjection({ command, operation, context, }: {
    command: string;
    operation: string;
    context: Context;
}): InterceptorResult;
