import './MixCard.css'; type Size = 'xs' | 's' | 'm' | 'l' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl'; declare const formMap: readonly ["round", "square"]; type FormMap = (typeof formMap)[number]; declare const cardStatus: readonly ["alert", "success", "warning"]; type CardStatus = (typeof cardStatus)[number] | string; type Props = { shadow?: boolean; border?: boolean; verticalSpace?: Size; horizontalSpace?: Size; form?: FormMap; status?: CardStatus; }; type CnCard = (props: Props, classNames?: Array) => string; export declare const cnMixCard: CnCard; export {};