import { CardInfo } from '../../components/interface';
import { ADD_CARD } from './constant';
interface AddCardAction {
    type: typeof ADD_CARD;
    payload: {
        card: CardInfo;
    };
}
export declare type TypesAction = AddCardAction;
export {};
