// Shared CMS slot type used by all element components

export interface CmsSlot {
  id: string;
  type: string;
  slot: string;
  data?: any;
  config?: any;
}
