import React from 'react'; import type { DiningCatalogItem, CompassSide } from '../../types/dining-iframe-types.js'; interface DiningChairCardProps { item: DiningCatalogItem; /** If provided, assign to this specific side */ side?: CompassSide; /** Whether this chair is currently assigned to the relevant side */ isAssigned?: boolean; onSelect?: (item: DiningCatalogItem) => void; } /** * Product card for chair/bench selection in the dining configurator. */ export declare const DiningChairCard: React.FC; export {};