import React from 'react';
type DiningImageOptionKind = 'table' | 'chair' | 'finish';
interface DiningImageOptionCardProps {
    kind: DiningImageOptionKind;
    title: string;
    imageSrc?: string | null;
    imageAlt?: string;
    selected?: boolean;
    disabled?: boolean;
    onClick?: () => void;
    imageFit?: 'contain' | 'cover';
    minHeight?: number;
    imageHeight?: number;
    selectedLabel?: string;
    titleIcon?: React.ReactNode;
}
export declare const DiningImageOptionCard: React.FC<DiningImageOptionCardProps>;
export {};
