export type PatternRenderData = {
  patternId: string;
  templateId: string;
  /**
   * Data id from `saveData()`
   * Cannot use with `demoId`
   */
  dataId?: string;
  /**
   * Cannot use with `dataId`
   */
  demoId?: string;
  assetSetId?: string;
  wrapHtml?: boolean;
  isInIframe?: boolean;
  cacheBuster?: string;
};
