import { ScalarType, StylePropsType } from '../type'; export declare type MarginPropsType = Partial<{ margin: ScalarType; marginTop: ScalarType; marginBottom: ScalarType; marginLeft: ScalarType; marginRight: ScalarType; }> & StylePropsType; export declare const marginProps: ({ margin: allMargin, marginTop, marginBottom, marginLeft, marginRight, theme, }: MarginPropsType) => import("@emotion/utils").SerializedStyles;