import * as CSS from "csstype"; import { BreakpointConfig } from "../../breakpoints"; import { SpaceSize } from "../modifiers/modifierUtils"; type ResponsiveValues = BreakpointConfig; type CSSPropertyKeys = keyof CSS.PropertiesHyphen; export declare const getResponsiveStyleData: (key: CSSPropertyKeys, value?: ResponsiveValues, map?: object) => { key: keyof CSS.PropertiesHyphen<0 | (string & {}), string & {}>; val: string | number | import("../../breakpoints").BreakpointsFor; }; export declare const getResponsiveStyle: (property: CSSPropertyKeys, value?: ResponsiveValues, map?: object) => string | undefined; export declare const getResponsiveSpacingStyle: (property: CSSPropertyKeys, spaceSize?: SpaceSize) => string | undefined; export {};