import type { Colors } from 'roosterjs-content-model-types'; import type { TextColorKeys } from '../types/stringKeys'; /** * @internal */ declare const TextColors: Record; /** * @internal */ declare const TextColorDropDownItems: Record; /** * Get mode independent color value of text color from the given color key * @param key The key to get color from * @returns A model independent color value of the given key */ declare function getTextColorValue(key: TextColorKeys): Colors; export { TextColors, TextColorDropDownItems, getTextColorValue };