import { CardAction } from '../card/card-action.mjs'; /** * * An interface representing MessagingExtensionSuggestedAction. * Messaging extension Actions (Only when type is auth or config) * */ type MessagingExtensionSuggestedAction = { /** * @member {CardAction[]} [actions] Actions */ actions?: CardAction[]; }; export type { MessagingExtensionSuggestedAction };