/**
 * Defines the properties that a card has.
 */
export default interface Card {
    id: string;
    [props: string]: any;
}
