import { CardType, CustomCardTheme } from '../components/creditCard/props'; export interface CardTheme { gradient: { start: string; end: string; }; textColor: string; name: string; } export declare const cardThemes: Record; /** * Get theme for card type */ export declare const getCardTheme: (cardType: CardType) => CardTheme; /** * Get theme for card type with custom overrides */ export declare const getCardThemeWithCustom: (cardType: CardType, customCardThemes?: Partial>, singleCustomTheme?: CustomCardTheme) => CardTheme;