import CardAbstract, { CardAbstractProps } from './CardAbstract';
type Info = {
    text: string;
    subText: string;
    extraText: string;
    value: number;
};
export default class CardListInfos extends CardAbstract {
    list: Info[];
    constructor(cardProps: CardAbstractProps);
    addList(...list: Info[]): CardListInfos;
}
export {};
