import type { JsonValue } from "./types.js"; export declare function looksLikeSecretFieldName(fieldName: string): boolean; export declare function findSecretsInText(input: string): string[]; export declare function redactSecretsInText(input: string): { text: string; secretFindings: string[]; }; export declare function redactJsonValue(value: JsonValue): { value: JsonValue; secretFindings: string[]; }; export declare function assertNoSecretsInJson(value: JsonValue): string[]; //# sourceMappingURL=secretIsolation.d.ts.map