export declare class Size2D { /** * The width of the size. */ width: number; /** * The height of the size. */ height: number; /** * CSS declarations for the `width` and `height` CSS properties. */ style: {width: string, height: string}; /** * CSS declarations for the `background-size` CSS property. */ backgroundSizeStyle: {backgroundSize: string}; }