export type LUT = {
  image: {
    width: number;
    height: number;
    data: Uint8Array;
  };
};
