import { StyleOptions } from '../../types'; export interface ColorProps { /** * The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the `currentcolor` value. `currentcolor` may be used as an indirect value on _other_ properties and is the default for other color properties, such as `border-color`. * * @see https://developer.mozilla.org/docs/Web/CSS/color */ style$Color: T; } export declare const color: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;