/**
 * @file wass-rct-ui
 * @description A reusable, high-performance Card component using React.memo and useMemo.
 * @author Web Apps Software Solutions
 * @copyright © 2024 Web Apps Software Solutions
 * @license MIT
 * @repository https://github.com/WebAppSoftNK/wass-rct-ui
 */
import * as React from "react";
import { ReactNode } from "react";
import { BGColorVariant } from "../types";
export interface CardProps {
    bgColorVariant?: BGColorVariant;
    header?: ReactNode;
    children: ReactNode;
    footer?: ReactNode;
    className?: string;
    skeleton?: boolean;
}
declare const Card: React.FC<CardProps>;
export default Card;
