import { IPaymentCard } from '../interfaces';
export declare class PaymentCardEntity implements IPaymentCard {
    brand: string;
    maskedNumber: string;
    tokenId: string;
    constructor(data?: Partial<PaymentCardEntity>);
}
