import { HTMLAttributes, ReactNode, Ref } from 'react'; import { IComponentBaseProps, Size } from '../types'; export declare const CARD = "card"; type Variant = "border" | "dash"; export declare const VARIANT_MAP: Record; export declare const SIZE_MAP: Record; export declare const CARD_MAP: { side: string; imageFull: string; xs: string; sm: string; md: string; lg: string; xl: string; border: string; dash: string; }; export interface CardProps extends HTMLAttributes, IComponentBaseProps { ref?: Ref; size?: Size; variant?: Variant; side?: boolean; imageFull?: boolean; figure?: ReactNode; } export {};