import { CardGridProps } from 'antd/es/card';
import { FC } from 'react';
import { CARS_GRID } from '../../../Types';
export interface ICardGrid {
    ctype: typeof CARS_GRID;
    props: CardGridProps;
}
declare const CardGrid: FC<ICardGrid>;
export default CardGrid;
