import { ObjectLiteralType, ScalarType } from '../type';
export declare type MarginPropsType = Partial<{
    margin: ScalarType;
    marginTop: ScalarType;
    marginBottom: ScalarType;
    marginLeft: ScalarType;
    marginRight: ScalarType;
    theme: ObjectLiteralType;
}>;
export declare const marginProps: ({ margin: allMargin, marginTop, marginBottom, marginLeft, marginRight, theme, }: MarginPropsType) => import("styled-components").FlattenSimpleInterpolation;
