import SingularEntity from "./singular-entity";
import type Card from "./card";
import type List from "./list";
import type SetApiResponse from "../types/api/set";
interface MagicSet extends SetApiResponse {
}
declare class MagicSet extends SingularEntity {
    constructor(scryfallObject: SetApiResponse);
    getCards(): Promise<List<Card>>;
}
export default MagicSet;
