import * as $dara from '@darabonba/typescript'; export declare class BrowserViewPort extends $dara.Model { /** * @remarks * The height of the browser viewport in pixels. * * @example * 1080 */ height?: number; /** * @remarks * The width of the browser viewport in pixels. * * @example * 1920 */ width?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }