import { CardAction } from '../card/card-action.js';

/**
 *
 * Tab SuggestedActions (Only when type is 'auth' or 'silentAuth').
 *
 */
type TabSuggestedActions = {
    /**
     * @member {CardAction[]} [actions] Actions to show in the card response.
     */
    actions: CardAction[];
};

export type { TabSuggestedActions };
