/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { TabResponseCard } from './tabResponseCard'; /** * Interface representing a collection of tab response cards. */ export interface TabResponseCards { /** * Array of response cards. */ cards: TabResponseCard[]; }