export interface CommonPopupProps { /** * Title of the popup */ popupTitle: string; /** * Whether the popup is persistent or not, so it can be closed by clicking outside of it */ persistent?: boolean; } export interface CommonPopupEmits { /** * Function triggered when popup is closed */ (e: 'closePopup'): void; } export interface CommonPopupModels { /** * Whether the popup is open or not */ isOpen: boolean; }