export declare class Size { width: number; height: number; [key: string]: any; constructor(param: string | any); toJSON(): { "width": number; "height": number; }; toString(): string; }