/** * Given a base color hex will return a function that expects * some given opactiy and returns the base color at that * opacity. */ declare const _default: (base: string) => (opacity: number | string) => string; export default _default;