import { RadixHue } from './types';

type Props = {
    darkSelector: string;
    lightSelector: string;
    prefix: string;
    useP3Colors: boolean;
    onlyOneTheme?: string | null;
    aliases: Record<string, RadixHue>;
};
export declare function generateCSSVariablesForColorsInUse({ darkSelector, lightSelector, prefix, useP3Colors, onlyOneTheme, aliases, }: Props): string;
export {};
