//#region src/traversal.d.ts
/**
 * Options for bounding recursive redaction traversal.
 * @since 2.2.0
 */
interface RedactionTraversalOptions {
  /**
   * Maximum recursion depth for object and array traversal.
   * @default `20`
   */
  readonly maxDepth?: number;
  /**
   * Maximum number of properties or array elements to process per object.
   * @default `1000`
   */
  readonly maxProperties?: number;
}
//#endregion
export { RedactionTraversalOptions };
//# sourceMappingURL=traversal.d.cts.map