import { CSSValueWithLength } from './buildCSSWithLength'; export interface SizeProps { width?: CSSValueWithLength; height?: CSSValueWithLength; } export declare function size({ width, height }: SizeProps): import("@emotion/react").SerializedStyles;