import type { Colors } from 'roosterjs-content-model-types'; import type { BackgroundColorKeys } from '../types/stringKeys'; /** * @internal */ declare const BackgroundColors: Record; /** * @internal * List of colors in drop down list */ declare const BackgroundColorDropDownItems: Record; /** * Get mode independent color value of background 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 getBackgroundColorValue(key: BackgroundColorKeys): Colors; export { BackgroundColors, BackgroundColorDropDownItems, getBackgroundColorValue };