import { C } from "./C"; import { Alpha } from "./Alpha"; import { NumberType } from "./NumberType"; export declare type RawHSL = C<"h" | "s" | "l">; export declare type OptionalHSL = RawHSL & Partial & NumberType; export declare type HSL = RawHSL & Alpha & NumberType; export declare const isHSL: (c: C) => c is HSL; //# sourceMappingURL=HSL.d.ts.map