import * as React from 'react';
import { FC, PropsWithChildren, ReactNode } from 'react';
export interface CardBadgeProps extends PropsWithChildren, React.HTMLAttributes<HTMLDivElement> {
    footer?: ReactNode;
    title: string;
    description?: string;
    badgeTxt?: string;
    buttons?: ReactNode;
    className?: string;
    header?: ReactNode;
    hasSeparator?: boolean;
    asChild?: boolean;
}
export declare const CardBadge: FC<CardBadgeProps>;
