import { CardProps } from 'antd';
import { FC } from 'react';
import { CARD, TComponentProps } from '../../Types';
interface IChildren extends Omit<CardProps, 'children'> {
    children: TComponentProps[];
}
export interface ICard {
    ctype: typeof CARD;
    props: IChildren;
}
declare const Card: FC<ICard>;
export default Card;
