import type { TSESTree } from "@typescript-eslint/utils"; /** * Check whether a call is `new DOMParser().parseFromString(...)`. * * @param node - Call expression to inspect. * * @returns Whether the call matches the DOMParser parsing sink. */ export declare const isDomParserParseFromStringCall: (node: Readonly) => boolean; /** * Check whether an expression appears to run through a sanitizer or trusted * policy helper. * * @param node - Expression to inspect. * * @returns Whether the expression is an explicit sanitization call. */ export declare const isSanitizedExpression: (node: Readonly) => boolean; //# sourceMappingURL=domparser.d.ts.map