import { Input } from "./Input"; export declare enum InputSetMethod { Direct = "direct", Message = "message", } export declare enum InputSetType { Normal = "normal", InputKeyboard = "input_keyboard", } export declare class InputSet { private id; private input; private type; private method; private regex; constructor(id: string, input: Input[]); findInput(name: string): Input; setType(type: InputSetType): InputSet; setMethod(method: InputSetMethod): InputSet; setRegex(regex: string): InputSet; readonly Type: InputSetType; readonly Id: string; readonly Input: Input[]; readonly Method: InputSetMethod; readonly Regex: string; toJSON(): any; }