/** * Represents an error thrown because a user set their stats to private */ declare class StatsPrivacyError extends Error { /** * The user who set their stats to private */ user: string; /** * @param user The user who set their stats to private */ constructor(user: string); } export default StatsPrivacyError;