import type { JSX } from 'react';
import type { CatalogItem } from '../../core/types';
export type CatalogClassicCardProps = {
    item: CatalogItem;
};
export declare function CatalogClassicCard({ item }: CatalogClassicCardProps): JSX.Element;
