import { CSSValue, ResponsiveStyle } from "./types"; export type ColorProps = Partial<{ bg: CSSValue<"backgroundColor">; color: CSSValue<"color">; borderColor: CSSValue<"borderColor">; }>; export declare const color: (props: ColorProps) => ResponsiveStyle;