/** * Margins in english */ export interface Margins { left: number; right: number; top: number; bottom: number; } /** * Check out MDN for [CSS margins](https://developer.mozilla.org/en-US/docs/Web/CSS/margin). Note it * only supports pixels(that should be obvious). */ export declare type CSSMargins = number | [number, number] | [number, number, number] | [number, number, number, number]; /** * Convert CSS margin declaration to a margin object that normal humans understand * @param cssMargins CSS style margins */ export declare function toEnglish(cssMargins?: CSSMargins): { left: number; right: number; top: number; bottom: number; };