/** * Returns a contrasting text color (light or dark) for a given background color. * Accepts hex values or Stash color names (resolved via CSS variables in the browser). * In SSR or when the color is invalid, returns the default contrast color (ice-900). * * @param color - Hex string (e.g. #fff or abc123) or Stash color name (e.g. blue-500) * @returns Hex string for the contrasting text color */ declare function getContrastingTextColor(color: string): "#27282A" | "#FFFFFF"; export default getContrastingTextColor; export { }