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

/**
 * A card representing a request to sign in
 */
type SigninCard = {
    /**
     * Text for signin request
     */
    text?: string;
    /**
     * Action to use to perform signin
     */
    buttons: CardAction[];
};

export type { SigninCard };
