/**
 * Represent the size of a 2D object, with (width, height)
 */
export declare class SizeF2D {
    width: number;
    height: number;
    constructor(width?: number, height?: number);
}
