import type { Color, Format } from './types'; export declare const isValidColor: (color: Color) => boolean; export declare const getFormat: (value?: Color) => Format; export declare const parseInRange: (value: string | number, { min, max }?: { min?: number; max?: number; }) => number;