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