import { CSSValue, ResponsiveStyle } from "./types"; export type SpaceProps = Partial<{ m: CSSValue<"margin", true>; mt: CSSValue<"marginTop", true>; mr: CSSValue<"marginRight", true>; mb: CSSValue<"marginBottom", true>; ml: CSSValue<"marginLeft", true>; mx: CSSValue<"marginLeft" | "marginRight", true>; my: CSSValue<"marginTop" | "marginBottom", true>; p: CSSValue<"padding", true>; pt: CSSValue<"paddingTop", true>; pr: CSSValue<"paddingRight", true>; pb: CSSValue<"paddingBottom", true>; pl: CSSValue<"paddingLeft", true>; px: CSSValue<"paddingLeft" | "paddingRight", true>; py: CSSValue<"paddingTop" | "paddingBottom", true>; }>; export declare const space: (props: SpaceProps) => ResponsiveStyle;