export type ManaSymbol = 'W' | 'U' | 'B' | 'R' | 'G' | 'C' | '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '15' | '16' | '17' | '18' | '19' | '20' | 'X' | '2/W' | '2/U' | '2/B' | '2/R' | '2/G' | 'W/U' | 'W/B' | 'U/B' | 'U/R' | 'B/R' | 'B/G' | 'R/G' | 'R/W' | 'G/W' | 'G/U' | 'W/P' | 'U/P' | 'B/P' | 'R/P' | 'G/P' | 'S' | 'T' | 'Q' | 'E';
export interface ManaSymbolProps {
    symbol: ManaSymbol;
    size?: number;
    className?: string;
}
export interface ManaCostProps {
    cost: string;
    size?: number;
    className?: string;
}
