/**
 * Calculates the X component of CIE 1931 XYZ from linear Adobe RGB.
 *
 * @param r The red component of linear Adobe RGB, typically in the range [0, 1].
 * @param g The green component of linear Adobe RGB, typically in the range [0, 1].
 * @param b The blue component of linear Adobe RGB, typically in the range [0, 1].
 *
 * @returns The X component of CIE 1931 XYZ.
 */
export declare const toCIE1931XYZXFromLinearAdobeRGB: (r: number, g: number, b: number) => number;
/**
 * Calculates the Y component of CIE 1931 XYZ from linear Adobe RGB.
 *
 * @param r The red component of linear Adobe RGB, typically in the range [0, 1].
 * @param g The green component of linear Adobe RGB, typically in the range [0, 1].
 * @param b The blue component of linear Adobe RGB, typically in the range [0, 1].
 *
 * @returns The Y component of CIE 1931 XYZ.
 */
export declare const toCIE1931XYZYFromLinearAdobeRGB: (r: number, g: number, b: number) => number;
/**
 * Calculates the Z component of CIE 1931 XYZ from linear Adobe RGB.
 *
 * @param r The red component of linear Adobe RGB, typically in the range [0, 1].
 * @param g The green component of linear Adobe RGB, typically in the range [0, 1].
 * @param b The blue component of linear Adobe RGB, typically in the range [0, 1].
 *
 * @returns The Z component of CIE 1931 XYZ.
 */
export declare const toCIE1931XYZZFromLinearAdobeRGB: (r: number, g: number, b: number) => number;
//# sourceMappingURL=adobe-rgb-to-cie-1931-xyz.d.ts.map