import { C } from "./C"; import { Alpha } from "./Alpha"; import { NumberType } from "./NumberType"; export declare type RawHSV = C<"h" | "s" | "v">; export declare type OptionalHSV = RawHSV & Partial & NumberType; export declare type HSV = RawHSV & Alpha & NumberType; export declare const isHSV: (c: C) => c is HSV; //# sourceMappingURL=HSV.d.ts.map