import React from 'react'; import { type CardProps } from '../../types/index.js'; type MiniCardProps = { readonly variant?: 'mini' | 'micro'; } & CardProps; export declare function MiniCard({ suit, value, faceUp, selected, rounded, variant, }: MiniCardProps): React.JSX.Element; export {};