import { Context } from "../../agent/Context";
import { IdorViolationResult } from "../../agent/hooks/InterceptorResult";
import { SQLDialect } from "../sql-injection/dialects/SQLDialect";
export declare function checkContextForIdor({ sql, context, dialect, resolvePlaceholder, }: {
    sql: string;
    context: Context;
    dialect: SQLDialect;
    resolvePlaceholder: (placeholder: string, placeholderNumber: number | undefined) => unknown;
}): IdorViolationResult | undefined;
