import color from 'color'; declare type ColorParam = string | number[] | { r?: number; g?: number; b?: number; a?: number; }; export declare const toString: (places?: number | undefined) => (colorParam: ColorParam) => string; export declare const toPercentString: (places?: number | undefined) => (colorParam: ColorParam) => string; export declare const toArray: (colorParam: ColorParam) => number[]; export declare const toObject: (colorParam: ColorParam) => string; export declare const toUnitArray: (colorParam: ColorParam) => number[]; export declare const toUnitObject: (colorParam: ColorParam) => { r: number; g: number; b: number; alpha?: number | undefined; }; export declare const round: (places?: number | undefined) => (colorParam: ColorParam) => string; export declare const getRound: (colorParam: ColorParam) => color | { [key: string]: any; }> | ArrayLike | { [key: string]: any; }> | ArrayLike | { [key: string]: any; }> | ArrayLike | { [key: string]: any; }> | ArrayLike | { [key: string]: any; }> | ArrayLike | { [key: string]: any; }> | ArrayLike | { [key: string]: any; }> | ArrayLike | { [key: string]: any; }> | ArrayLike | { [key: string]: any; }> | ArrayLike | { [key: string]: any; }> | ArrayLike | { [key: string]: any; }> | ArrayLike | { [key: string]: any; }>; export declare const alpha: (val: number) => (colorParam: ColorParam) => string; export declare const getAlpha: (colorParam: ColorParam) => number; export declare const red: (val: number) => (colorParam: ColorParam) => string; export declare const getRed: (colorParam: ColorParam) => number; export declare const green: (val: number) => (colorParam: ColorParam) => string; export declare const getGreen: (colorParam: ColorParam) => number; export declare const blue: (val: number) => (colorParam: ColorParam) => string; export declare const getBlue: (colorParam: ColorParam) => number; export declare const hue: (val: number) => (colorParam: ColorParam) => string; export declare const getHue: (colorParam: ColorParam) => number; export declare const saturationl: (val: number) => (colorParam: ColorParam) => string; export declare const getSaturationl: (colorParam: ColorParam) => number; export declare const lightness: (val: number) => (colorParam: ColorParam) => string; export declare const getLightness: (colorParam: ColorParam) => number; export declare const saturationv: (val: number) => (colorParam: ColorParam) => string; export declare const getSaturationv: (colorParam: ColorParam) => number; export declare const value: (val: number) => (colorParam: ColorParam) => string; export declare const getValue: (colorParam: ColorParam) => number; export declare const chroma: (val: number) => (colorParam: ColorParam) => string; export declare const getChroma: (colorParam: ColorParam) => number; export declare const gray: (val: number) => (colorParam: ColorParam) => string; export declare const getGray: (colorParam: ColorParam) => number; export declare const white: (val: number) => (colorParam: ColorParam) => string; export declare const getWhite: (colorParam: ColorParam) => number; export declare const wblack: (val: number) => (colorParam: ColorParam) => string; export declare const getWblack: (colorParam: ColorParam) => number; export declare const cyan: (val: number) => (colorParam: ColorParam) => string; export declare const getCyan: (colorParam: ColorParam) => number; export declare const magenta: (val: number) => (colorParam: ColorParam) => string; export declare const getMagenta: (colorParam: ColorParam) => number; export declare const yellow: (val: number) => (colorParam: ColorParam) => string; export declare const getYellow: (colorParam: ColorParam) => number; export declare const black: (val: number) => (colorParam: ColorParam) => string; export declare const getBlack: (colorParam: ColorParam) => number; export declare const x: (val: number) => (colorParam: ColorParam) => string; export declare const getX: (colorParam: ColorParam) => number; export declare const y: (val: number) => (colorParam: ColorParam) => string; export declare const getY: (colorParam: ColorParam) => number; export declare const z: (val: number) => (colorParam: ColorParam) => string; export declare const getZ: (colorParam: ColorParam) => number; export declare const l: (val: number) => (colorParam: ColorParam) => string; export declare const getL: (colorParam: ColorParam) => number; export declare const a: (val: number) => (colorParam: ColorParam) => string; export declare const getA: (colorParam: ColorParam) => number; export declare const b: (val: number) => (colorParam: ColorParam) => string; export declare const getB: (colorParam: ColorParam) => number; export declare const keyword: (val: string) => (colorParam: ColorParam) => string; export declare const getKeyword: (colorParam: ColorParam) => string; export declare const hex: (val: string) => (colorParam: ColorParam) => string; export declare const rgbNumber: (colorParam: ColorParam) => number; export declare const luminosity: (colorParam: ColorParam) => number; export declare const contrast: (colorParam2: ColorParam) => (colorParam: ColorParam) => number; export declare const level: (colorParam2: ColorParam) => (colorParam: ColorParam) => "" | "AAA" | "AA"; export declare const isDark: (colorParam: ColorParam) => boolean; export declare const isLight: (colorParam: ColorParam) => boolean; export declare const negate: (colorParam: ColorParam) => string; export declare const lighten: (ratio: number) => (colorParam: ColorParam) => string; export declare const darken: (ratio: number) => (colorParam: ColorParam) => string; export declare const saturate: (ratio: number) => (colorParam: ColorParam) => string; export declare const desaturate: (ratio: number) => (colorParam: ColorParam) => string; export declare const whiten: (ratio: number) => (colorParam: ColorParam) => string; export declare const blacken: (ratio: number) => (colorParam: ColorParam) => string; export declare const grayscale: (colorParam: ColorParam) => string; export declare const fade: (ratio: number) => (colorParam: ColorParam) => string; export declare const opaquer: (ratio: number) => (colorParam: ColorParam) => string; export declare const rotate: (degrees: number) => (colorParam: ColorParam) => string; export declare const mix: (mixinColor: ColorParam, weight?: number | undefined) => (colorParam: ColorParam) => string; export declare const rgb: (colorParam: ColorParam) => string; export declare const hsl: (colorParam: ColorParam) => string; export declare const hsv: (colorParam: ColorParam) => string; export declare const hwb: (colorParam: ColorParam) => string; export declare const cmyk: (colorParam: ColorParam) => string; export declare const xyz: (colorParam: ColorParam) => string; export declare const lab: (colorParam: ColorParam) => string; export declare const lch: (colorParam: ColorParam) => string; export declare const ansi16: (colorParam: ColorParam) => string; export declare const ansi256: (colorParam: ColorParam) => string; export declare const hcg: (colorParam: ColorParam) => string; export declare const apple: (colorParam: ColorParam) => string; export {};