import { ObjectLiteralType, ScalarType } from '../type';
export declare type WidthPropsType = Partial<{
    width: ScalarType;
    maxWidth: ScalarType;
    minWidth: ScalarType;
    wide: boolean;
    theme: ObjectLiteralType;
}>;
export declare type HeightPropsType = Partial<{
    height: ScalarType;
    maxHeight: ScalarType;
    minHeight: ScalarType;
    tall: boolean;
    theme: ObjectLiteralType;
}>;
export declare const widthProps: ({ width, maxWidth, minWidth, wide, theme, }: WidthPropsType) => import("styled-components").FlattenSimpleInterpolation;
export declare const heightProps: ({ height, maxHeight, minHeight, tall, theme, }: HeightPropsType) => import("styled-components").FlattenSimpleInterpolation;
