import { CSSProperties, HTMLAttributes } from 'react';
export interface CardProps extends HTMLAttributes<HTMLDivElement> {
    children: React.ReactNode;
    className?: string;
    elevation?: 0 | 1 | 2 | 3 | 4;
    rounded?: "none" | "sm" | "md" | "lg" | "xl";
    outlined?: boolean;
    style?: CSSProperties;
    id?: string;
}
declare const Card: React.FC<CardProps>;
export default Card;
