/**
 * Card-related MCP resources for the Scryfall server.
 */
/**
 * Get detailed information about a specific Magic: The Gathering card by ID.
 */
export declare function cardById(cardId: string): Promise<[string, string]>;
/**
 * Get detailed information about a specific Magic: The Gathering card by name.
 */
export declare function cardByName(cardName: string): Promise<[string, string]>;
/**
 * Get a random Magic: The Gathering card.
 */
export declare function randomCard(): Promise<[string, string]>;
//# sourceMappingURL=cardResources.d.ts.map