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