/** Represents an RGBA color (red, green, blue, alpha) with values between `0` and `1`. */exporttypeSdtfPrimitiveColorType = [number, number, number, number];
/** Represents a JSON object with arbitrary data. */exporttypeSdtfPrimitiveJsonType = Record<string, unknown> | Array<unknown>;