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 JS Injection, if so the function returns an InterceptorResult */ export declare function checkContextForJsInjection({ js, operation, context, }: { js: string; operation: string; context: Context; }): InterceptorResult;