import { Color, ColorValue, SpacingUnit } from "./index";
/**
 * A helper to easily access space values when not in a styled-components or
 * styled-systems context.
 *
 * @deprecated use component spacing props, or `themeGet('space.n')`
 */
export declare const space: (spaceKey: SpacingUnit) => number;
/**
 * A helper to easily access colors when not in a styled-components or
 * styled-systems context.
 *
 * @deprecated use component `color` or `borderColor` props, or `themeGet('colors.colorName')`
 */
export declare function color(colorKey: undefined): undefined;
export declare function color(colorKey: Color): ColorValue;
export declare function color(colorKey?: Color): ColorValue | undefined;
