export declare class Size {
    width: number;
    height: number;
    constructor(width: number, height: number);
}
