import React from 'react';
interface Translations {
    text_blocked: string;
    text_expired: string;
    text_not_active: string;
    text_new_order: string;
    text_order_in_process: string;
    text_replaced: string;
    text_renewed: string;
    text_new: string;
    text_unknown: string;
}
interface StatusOverlayProps {
    cardStatus: string;
    translations: Translations;
    cardDesign: string;
}
declare const StatusOverlay: React.FC<StatusOverlayProps>;
export declare const isCardBlocked: (cardStatus: string) => boolean;
export default StatusOverlay;
