import type { ThemeData } from "./theme-data.js";

export type ThemeChangedData = {
  oldValue: ThemeData;
  newValue: ThemeData;
};
