import { IRGBANomral } from "./readColor.js"; export type ColorFormatType = "hex" | "ahex" | "rgba" | "rgb" | "rgb2" | "hexa" | "hexOnly" | "swift" | "objective-c" | "hsl" | "hwb" | "hsla" | "hwba"; export declare enum ColorFormat { hex = "hex", hexa = "hexa", hexOnly = "hexOnly", ahex = "ahex", rgba = "rgba", rgb = "rgb", rgb2 = "rgb2", swift = "swift", objectiveC = "objective-c", hsl = "hsl", hsla = "hsla", hwb = "hwb", hwba = "hwba" } export declare function writeColor(color: IRGBANomral, format?: ColorFormatType): string | undefined; //# sourceMappingURL=writeColor.d.ts.map