import type { RetryOptions } from '../../fetcher'; export interface BggClientOptions { apiKey: string; /** Optional cookie string sent on every request — needed for private collections. */ cookie?: string; /** Optional retry policy overrides; defaults from DEFAULT_RETRY_OPTIONS apply where omitted. */ retry?: RetryOptions; }