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

/**
 *
 * 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 };
