import { SuggestedActions } from '../suggested-actions.js';
import '../card/card-action.js';

/**
 *
 * An interface the bot's authentication config for SuggestedActions
 */
type ConfigAuth = {
    /**
     * @member {SuggestedActions} [suggestedActions] SuggestedActions for the Bot Config Auth
     */
    suggestedActions?: SuggestedActions;
    /**
     * @member {BotConfigAuthType} [type] Type of the Bot Config Auth
     */
    type: 'auth';
};

export type { ConfigAuth };
