import { CSSValueWithLength } from './buildCSSWithLength'; export interface SpaceProps { m?: CSSValueWithLength; mt?: CSSValueWithLength; ml?: CSSValueWithLength; mr?: CSSValueWithLength; mb?: CSSValueWithLength; p?: CSSValueWithLength; pt?: CSSValueWithLength; pl?: CSSValueWithLength; pr?: CSSValueWithLength; pb?: CSSValueWithLength; } export declare function space({ m, mt, ml, mr, mb, p, pt, pl, pr, pb }: SpaceProps): import("@emotion/react").SerializedStyles;