import Card from './Card'; declare abstract class MarkerCard extends Card { /** * Convert the card to a colored string, which can be printed to the console. * @returns {string} */ getGraph(): string; } export default MarkerCard;