import BaseElement from './base-element'; export declare class RecorderEndpoint extends BaseElement { constructor(objId: string); getObjectId(): string; record(): Promise<{ sessionId: string; } | null>; stop(): Promise<{ sessionId: string; } | null>; }