/**
 * Takes in any color and returns it as a hex code.
 */
declare function toHex(color: string): string;
export default toHex;
