import type { RGB, XYZ } from '../colorUtils.js';
export declare function fromXYZ(xyz: XYZ): RGB;
export declare function toXYZ({ r, g, b }: RGB): XYZ;
