import { UpBoxProps } from './types';
import { Size, SizeObject, BoxSize, BoxSizeObject, Full, WrapOption, SizeStyle } from './types';
export declare function calculateFlexWrap(wrap?: boolean, reverse?: boolean): WrapOption;
export declare function sizeToString(size: Size | SizeObject, smallSize?: boolean): string;
export declare function boxSizeToStyle(size: BoxSize | BoxSizeObject): SizeStyle;
export declare function calculateFullStyle(full: Full, postFix: 'vw' | 'vh'): string;
export declare const getBoxStyles: (props: UpBoxProps) => string;
export declare const getSize: (props: UpBoxProps) => string;
