import { C } from "./C"; import { Alpha } from "./Alpha"; import { NumberType } from "./NumberType"; export declare type RawRGB = C<"r" | "g" | "b">; export declare type OptionalRGB = RawRGB & Partial & NumberType; export declare type RGB = RawRGB & Alpha & NumberType; export declare const isRGB: (c: C) => c is RGB; //# sourceMappingURL=RGB.d.ts.map