import { CustomColors } from '../types';
/**
 * Прокидывает пользовательские цвета темы в CSS-переменные --rct-* на элементе.
 * Цвета и тему получает аргументами (без доступа к контексту), чтобы оставаться
 * презентационным shared-хуком.
 */
export declare const usePropsColors: (element: React.MutableRefObject<HTMLElement | null>, customColors: CustomColors | undefined, theme: "dark" | "light" | undefined) => void;
