import React from 'react';
export interface CardProps {
    variant?: 'default' | 'elevated' | 'outlined';
    padding?: 'sm' | 'md' | 'lg' | 'xl';
    children: React.ReactNode;
    className?: string;
    onClick?: () => void;
    interactive?: boolean;
}
export declare const Card: React.FC<CardProps>;
//# sourceMappingURL=Card.d.ts.map