import { Context } from "../../agent/Context"; import { Source } from "../../agent/Source"; type DetectionResult = { injection: true; source: Source; pathsToPayload: string[]; payload: unknown; } | { injection: false; }; export declare function detectNoSQLInjection(request: Context, filter: unknown): DetectionResult; export {};