/** * Represents strings which are valid RGB colors. Permits both absolute and percentage based values. * * @since 1.0.0 */ import { Branded } from 'schemata-ts/brand'; import * as PB from 'schemata-ts/PatternBuilder'; import { SchemaExt } from 'schemata-ts/SchemaExt'; interface RGBBrand { readonly RGB: unique symbol; } /** * Represents strings which are valid RGB colors. Permits both absolute and percentage based values. * * @since 1.0.0 * @category Model */ export declare type RGB = Branded; /** * @since 1.0.0 * @category Model */ export declare type RGBS = SchemaExt; /** * @since 1.0.0 * @category Pattern */ export declare const RGBPattern: PB.Pattern; /** * Represents strings which are valid RGB colors. Permits both absolute and percentage based values. * * @since 1.0.0 * @category Schema */ export declare const RGB: RGBS; export {}; //# sourceMappingURL=RGB.d.ts.map