#ifndef THIRD_PARTY_BLINK_PUBLIC_COMMON_INTEREST_GROUP_DEVTOOLS_SERIALIZATION_H_
#define THIRD_PARTY_BLINK_PUBLIC_COMMON_INTEREST_GROUP_DEVTOOLS_SERIALIZATION_H_
#include "base/values.h"
#include "third_party/blink/public/common/common_export.h"
namespace blink {
struct AuctionConfig;
struct InterestGroup;
base::Value::Dict BLINK_COMMON_EXPORT
SerializeAuctionConfigForDevtools(const AuctionConfig& conf);
base::Value::Dict BLINK_COMMON_EXPORT
SerializeInterestGroupForDevtools(const InterestGroup& ig);
}
#endif