import * as react_jsx_runtime from 'react/jsx-runtime'; import React__default from 'react'; interface SelectableCardProps { /** The value passed to the parent RadioGroup */ value: string; /** Whether this card is currently selected */ selected?: boolean; /** Content rendered inside the card */ children: React__default.ReactNode; className?: string; } /** * A card-shaped radio option. Place inside a RadioGroup. * Hides the RadioGroupItem visually so the entire card acts as the selector. */ declare function SelectableCard({ value, selected, children, className, }: SelectableCardProps): react_jsx_runtime.JSX.Element; export { SelectableCard, type SelectableCardProps };