import { CardAction } from '@microsoft/agents-activity';
/**
 * Represents a sign-in card.
 */
export interface SigninCard {
    /**
     * The text to display on the sign-in card.
     */
    text?: string;
    /**
     * The buttons to include on the sign-in card.
     */
    buttons: CardAction[];
}
