import { CardAction } from '../card/card-action.mjs'; /** * * 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 };