/** * @module botbuilder-ai */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ export interface NumberWithUnits { /** * A recognized number if any. */ number?: number; /** * Units for the number. */ units: string; } //# sourceMappingURL=numberWithUnits.d.ts.map