export type ImageDataLike = {
    data: Uint8ClampedArray;
    width: number;
    height: number;
    colorSpace: "srgb" | "display-p3";
};
