import { Property } from "csstype"; import { KeysOf, SpaceScaleValue } from "../types"; /** * Types for margin CSS properties */ export declare type MarginProps = Partial<{ /** * The CSS `margin` property */ margin: Property.Margin | number; /** * The CSS `margin` property */ m: Property.Margin | number; /** * The CSS `margin-top` property */ marginTop: Property.MarginTop | number; /** * The CSS `margin-top` property */ mt: Property.MarginTop | number; /** * The CSS `margin-right` property */ marginRight: Property.MarginRight | number; /** * The CSS `margin-right` property */ mr: Property.MarginRight | number; /** * The CSS `margin-inline-start` property */ marginStart: Property.MarginInlineStart | number; /** * The CSS `margin-inline-start` property */ ms: Property.MarginInlineStart | number; /** * The CSS `margin-bottom` property */ marginBottom: Property.MarginBottom | number; /** * The CSS `margin-bottom` property */ mb: Property.MarginBottom | number; /** * The CSS `margin-left` property */ marginLeft: Property.MarginLeft | number; /** * The CSS `margin-left` property */ ml: Property.MarginLeft | number; /** * The CSS `margin-inline-end` property */ marginEnd: Property.MarginInlineEnd | number; /** * The CSS `margin-inline-end` property */ me: Property.MarginInlineEnd | number; /** * The CSS `margin-inline-start` and `margin-inline-end` property */ mx: Property.MarginInlineStart | number; /** * The CSS `margin-top` and `margin-bottom` property */ my: Property.MarginTop | number; }>; /** * Style prop names for margin properties */ export declare const marginPropNames: KeysOf; //# sourceMappingURL=margin.d.ts.map