/** * Parameters that a bot can use to configure how it'#39;s response is posted. */ export declare class ActionResponse { /** * The type of bot response. */ private type?; /** * URL for users to auth or config. (Only for REQUEST_CONFIG response * types.) */ private url?; getType(): string; setType(value: string): ActionResponse; getUrl(): string; setUrl(value: string): ActionResponse; }