/** * @module botbuilder-dialogs */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * The converter converts object from one type to another. */ export interface Converter { convert(value: From | To): To; } export declare type ConverterFactory = { new (...args: unknown[]): Converter; }; //# sourceMappingURL=converter.d.ts.map