export class AdapterFactory { /** * Abstract method * * @param {object} rawIOData - See OrchestratorFactory.create() * @param {object} config - Adapter configuration; the format depends on * the adapter. See constructors of the individual dialog adapters for * more details. * @returns {Promise} */ create(rawIOData: object, config: object): Promise; }