import { FC, ReactNode } from 'react';
export interface CardProps {
    children: ReactNode;
    header?: ReactNode;
    footer?: ReactNode;
    padding?: 'none' | 'sm' | 'md' | 'lg';
    shadow?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
    border?: boolean;
    rounded?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
    className?: string;
}
/**
 * Card component for consistent container styling
 * Provides header, footer, and content areas with configurable styling
 */
export declare const Card: FC<CardProps>;
//# sourceMappingURL=Card.d.ts.map