/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { AgentComponent } from './agentComponent'; import { ServiceCollection } from './serviceCollection'; import { Configuration } from './configuration'; /** * Agent component for agent Dialogs. */ export declare class DialogsAgentComponent extends AgentComponent { /** * @param services Services Collection to register. * @param configuration Configuration for the agent component. */ configureServices(services: ServiceCollection, configuration: Configuration): void; }