import type { BackgroundAccentColorsType, BackgroundEmotionColorsType, BorderAccentColorsType, BorderEmotionColorsType, IconBoxColorsType, TextColorProps } from '../../types'; export interface UseIconBoxColorsProps { colors: { background: BackgroundAccentColorsType | BackgroundEmotionColorsType; border: BorderAccentColorsType | BorderEmotionColorsType; text: TextColorProps['textColor']; }; } export declare const useIconBoxColors: (color?: IconBoxColorsType, isSubtle?: boolean) => UseIconBoxColorsProps;