/**
 * Pops DTO auto-context from the provided DTO prototype.
 * @param {object} target - DTO prototype to update.
 * @param {WeakSet<object>} [visited] - Set of visited prototypes to avoid infinite recursion.
 */
export declare function DtoAutoContextPop(target: object, visited?: WeakSet<object>): void;
