import * as $dara from '@darabonba/typescript'; export declare class ListBrowsersRequest extends $dara.Model { /** * @remarks * Filter by browser name * * @example * browser */ browserName?: string; /** * @remarks * Page number * * @example * 10 */ pageNumber?: number; /** * @remarks * Page size * * @example * 1 */ pageSize?: number; /** * @remarks * Filter by status * * @example * CREATING * * **if can be null:** * true */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }