/** How a profile turns its own components into sRGB, each 0..1. */ export type IccTransform = (comps: ReadonlyArray) => [number, number, number]; /** * Read an ICC profile into a transform to sRGB. * * @param profile The raw profile bytes, as `/ICCBased`'s stream holds them. * @returns The transform, or `undefined` for a profile whose form this does not * read — a CMYK one, a table-based one, or a damaged one. */ export declare function iccTransform(profile: Uint8Array): IccTransform | undefined;