/// import { CSSProperties, HTMLProps } from 'react'; export interface CardProps extends HTMLProps { level: number; } export declare const DEFAULT_STYLE: CSSProperties; export default function Card(props: CardProps): JSX.Element;