export 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: ({ cardStatus, translations, cardDesign, }: StatusOverlayProps) => import("react/jsx-runtime").JSX.Element;
export declare const isCardBlocked: (cardStatus: string) => boolean;
export default StatusOverlay;
