import { ReactNode } from 'react'; export interface SelectableCardProps { title: string; isSelected: boolean; onSelect: () => void; icon?: ReactNode; description?: string; className?: string; } export declare const SelectableCard: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=SelectableCard.d.ts.map