import * as typestyle from 'typestyle'; import { CSSLength } from "../common"; /** * Puts a vertical margin between each child */ export declare const verticallySpaced: (margin: string | number) => typestyle.types.NestedCSSProperties; /** * Puts a horizontal margin between each child */ export declare const horizontallySpaced: (margin: string | number) => typestyle.types.CSSProperties; /** * Puts a horizontal margin between each child */ export declare const horizontallyReverseSpaced: (margin: string | number) => typestyle.types.CSSProperties; /** * Puts a (horizontal AND vertical) margin between each child */ export declare function gridSpaced(both: CSSLength): typestyle.types.NestedCSSProperties; export declare function gridSpaced(topAndBottom: CSSLength, leftAndRight: CSSLength): typestyle.types.NestedCSSProperties; //# sourceMappingURL=spacing.d.ts.map