declare const CARD = "card"; declare type CardFlags = 'expand'; interface Card { flags?: CardFlags; type: typeof CARD; } export default Card; export { CARD, CardFlags };