import { Color } from './colors.js'; declare const computeColor: (color: Color, prefix?: "bg" | "text" | "fill" | "stroke") => "bg-primary" | "bg-secondary" | "bg-tertiary" | "bg-success" | "bg-warning" | "bg-error" | "bg-loading" | "bg-blue" | "bg-lightblue" | "bg-orange" | "bg-purple" | "bg-indaco" | "bg-white" | "bg-black" | "bg-grey" | "text-primary" | "text-secondary" | "text-tertiary" | "text-success" | "text-warning" | "text-error" | "text-loading" | "text-blue" | "text-lightblue" | "text-orange" | "text-purple" | "text-indaco" | "text-white" | "text-black" | "text-grey" | "fill-primary" | "fill-secondary" | "fill-tertiary" | "fill-success" | "fill-warning" | "fill-error" | "fill-loading" | "fill-blue" | "fill-lightblue" | "fill-orange" | "fill-purple" | "fill-indaco" | "fill-white" | "fill-black" | "fill-grey" | "stroke-primary" | "stroke-secondary" | "stroke-tertiary" | "stroke-success" | "stroke-warning" | "stroke-error" | "stroke-loading" | "stroke-blue" | "stroke-lightblue" | "stroke-orange" | "stroke-purple" | "stroke-indaco" | "stroke-white" | "stroke-black" | "stroke-grey"; export { computeColor };