import React from 'react'; import type { DiningCatalogItem } from '../../types/dining-iframe-types.js'; interface DiningTableCardProps { item: DiningCatalogItem; onSelect?: (item: DiningCatalogItem) => void; minHeight?: number; imageHeight?: number; } /** * Product card for table selection in the dining configurator. * Shows table image with the reference-style title tab and selected badge. */ export declare const DiningTableCard: React.FC; export {};