import { SupportedSize } from './Element'; export declare type MarginProps = { size?: SupportedSize; vertical?: SupportedSize; horizontal?: SupportedSize; left?: SupportedSize; right?: SupportedSize; top?: SupportedSize; bottom?: SupportedSize; lastChild?: { bottom?: boolean; }; }; export declare type MarginShape = MarginProps; declare const _default: ({ size, vertical, horizontal, left, right, top, bottom, lastChild, }: MarginProps) => string[]; export default _default;