export interface TourStep {
    id: string;
    content: string;
  }
  
 export  interface TourGuidePopupProps {
    steps: TourStep[];
  }