import { type CSSResult } from 'element-vir';
import { type ColorThemeColor } from './color-theme.js';
/**
 * Creates foreground and background CSS code. The foreground color is applied to the CSS `color`
 * property and the background color is applied to the CSS `background-color` property.
 *
 * @category Color Theme
 */
export declare function colorCss(color: Readonly<ColorThemeColor>): CSSResult;
