import { RGBCOLORDEF } from "./types.js"; //#region src/color-utils.d.ts /** * This function was the opposite of the name of the repo and returns the color of the colorSet given the name * * @param {string} searchedColor -the name of the color to search for * @param {Array} set - the colorSet to search in */ declare function getColor(searchedColor: string, set?: RGBCOLORDEF[] | undefined): { hex: `#${string}`; rgb: string; hsl: string; }; /** * Get all the colors from the colorSet */ declare function getColors(): { name: string; hex: `#${string}`; rgb: string; hsl: string; }[]; //#endregion export { getColor, getColors };