export {};

declare global {
  interface Window {
    handleMessage: ((d: { data: { type: string; data: any } }) => void) | null;
    origin?: string;
  }
}
