import * as $dara from '@darabonba/typescript'; import { BrowserSessionOut } from "./BrowserSessionOut"; export declare class BrowserSessionListOut extends $dara.Model { /** * @remarks * An array of browser session objects. * * @example * [] */ items?: BrowserSessionOut[]; /** * @remarks * The current page number. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of sessions per page. * * @example * 20 */ pageSize?: number; /** * @remarks * The total number of sessions. * * @example * 2 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }