import { Event } from '../component/BaseComponent'; import { InputSet } from './InputSet'; export declare class Response { private content; private event; private command; private inputSet; constructor(content: string); setEvent(event: Event): Response; setCommand(command: string): Response; setInputSet(inputSet: InputSet): Response; readonly Content: string; readonly Event: Event; readonly Command: string; readonly InputSet: InputSet; }