1 export interface PopupConfig { 2 prompts: PopupPromptsType[] 3 } 4 5 export interface PopupPromptsType { 6 icon: string 7 title: string 8 prompt: string 9 }