/// <reference types="react" />
import { SkeletonCardContent } from '@/components/skeletons/components/SkeletonCardContent';
import { SkeletonCardFooter } from '@/components/skeletons/components/SkeletonCardFooter';
type TSkeletonCardProps = {
    theme: 'light' | 'dark';
    className?: string;
    children?: React.ReactNode;
};
declare function SkeletonCard({ theme, className, children }: TSkeletonCardProps): React.ReactElement;
declare namespace SkeletonCard {
    var Content: typeof SkeletonCardContent;
    var Footer: typeof SkeletonCardFooter;
}
export { SkeletonCard };
