import { type AccentColorNamesType, type BackgroundAccentColorsType, type BackgroundEmotionColorsType, type BackgroundNeutralColorsType, type BorderAccentColorsType, type BorderEmotionColorsType, type EmotionColorNamesType, type TextAccentColorsType, type TextColorsDictionaryType, type TextEmotionColorsType, type TextNeutralColorsType } from '../types'; export declare const generateColorsObject: (colors: Record>, type: string, prefix: string) => Record; export declare const getAccentTextColors: () => Record; export declare const getEmotionTextColors: () => Record; export declare const getAccentBackgroundColors: () => Record; export declare const getEmotionBackgroundColors: () => Record; export declare const getAccentBorderColors: () => Record; export declare const getEmotionBorderColors: () => Record; export declare const getNeutralTextColors: () => Record; export declare const getNeutralBackgroundColors: () => Record; export declare const getAccentColorNames: () => AccentColorNamesType[]; export declare const getEmotionColorNames: () => EmotionColorNamesType[]; export declare const getTextColorNames: () => TextColorsDictionaryType[];