import type { DefaultColorToken } from '../../types/tokens';
export interface IconColorBundle {
color: 'inherit' | 'currentColor' | 'transparent' | DefaultColorToken;
}
export declare function classNameForIconColor({ color }: IconColorBundle): string;