import { CardConverter } from './card.converter'; import { CardCollection } from './card.collection'; export declare class CardCollectionConverter { private cardConverter; constructor(cardConverter: CardConverter); toCollection(json: any): CardCollection; }