import { type DottedKeysWithArray } from './types'; /** * Returns a new object with the provided keys obfuscated * Supports: * - scrambling keys in nested arrays * - scrambling wildcard patterns: '*.password' * - scrambling standard keys * * @param {Record} obj - Object to omit from * @param {string[]} keys - Array of keys to omit from object */ declare function scramble, K extends readonly (DottedKeysWithArray | `*.${string}`)[]>(obj: T, keys: K, options?: { replacement?: string; }): T; export { scramble, scramble as default };