export interface NPAWOptions { enabled?: boolean; accountCode?: string; appName: string; tracking: { isLive?: boolean; userId?: string; sessionId?: string; ageGroup?: string; metadata: { contentId?: string; title?: string; episodeTitle?: string; seasonId?: string; seasonTitle?: string; showTitle?: string; showId?: string; overrides?: { [key: string]: string; }; }; }; } export declare function toConfig(options: NPAWOptions): Record;