import * as $dara from '@darabonba/typescript'; export declare class ListBrowsersInput extends $dara.Model { /** * @remarks * Filters the results by browser name. * * @example * my-browser */ browserName?: string; /** * @remarks * The page number of the results to return. * * @example * 1 */ pageNumber?: number; /** * @remarks * The maximum number of results to return per page. * * @example * 20 */ pageSize?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }