import { IErrorEventSubscriber } from "../../external/ACSAdapter/IErrorEventSubscriber";
interface ChatAdapterOptionalParams {
    protocol?: string;
    IC3Adapter?: {
        options?: {
            [key: string]: any;
        };
    };
    ACSAdapter?: {
        fileScan?: {
            disabled?: boolean;
            pollingInterval?: number;
            scanStatusRetrievalDelay?: number;
        };
        options?: {
            [key: string]: any;
        };
        errorEventSubscriber?: IErrorEventSubscriber;
    };
    DirectLine?: {
        options?: {
            [key: string]: any;
        };
    };
}
export default ChatAdapterOptionalParams;
