import type { ESTree } from "meriyah"; import type { ProbeContext, ProbeMainContext } from "../../ProbeRunner.ts"; declare const kShuckingVariables: unique symbol; declare const kAmbiguousVariableNames: unique symbol; interface PasswordShuckingContext { [kShuckingVariables]?: Set; [kAmbiguousVariableNames]?: Set; } type NodeValidationResult = [false] | [true] | [true, string[]]; declare function validateNode(node: ESTree.Node, ctx: ProbeContext): NodeValidationResult; declare function initialize(ctx: ProbeContext): void; declare function markAmbiguousParams(_node: ESTree.Node, ctx: ProbeMainContext): void; declare function bcryptHashCall(bcryptNode: ESTree.CallExpression, ctx: ProbeMainContext): void; declare const _default: { name: string; nodeTypes: string[]; validateNode: typeof validateNode; main: { default: typeof bcryptHashCall; markAmbiguousParams: typeof markAmbiguousParams; }; initialize: typeof initialize; breakOnMatch: boolean; context: {}; }; export default _default; //# sourceMappingURL=isPasswordShucking.d.ts.map