import * as $dara from '@darabonba/typescript'; import { BrowserAutomationStream } from "./BrowserAutomationStream"; import { BrowserLiveViewStream } from "./BrowserLiveViewStream"; export declare class BrowserStreams extends $dara.Model { /** * @remarks * automation stream * * @example * {} */ automationStream?: BrowserAutomationStream; /** * @remarks * real-time view stream * * @example * {} */ liveViewStream?: BrowserLiveViewStream; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }