type CardTypes = string;
export type BalanceSlider = {
    leftStat: string;
    rightStat: string;
    value: number;
};
export type MassAppealCard = {
    headName: string;
    value?: number;
    multiplier?: number;
    infoSection?: string;
    code?: string;
    color?: string;
    emoji: string;
    type: CardTypes;
    target?: string;
    tier?: "s" | "a" | "b" | "c" | "d" | "f";
    slider?: BalanceSlider;
};
export declare const startingCards: MassAppealCard[];
export declare const boxingPunchCards: MassAppealCard[];
export declare const massAppealDeck: MassAppealCard[];
export {};
