import { IconProps } from '../Icon/index.js'; type OptionCardGroupProps = { value: string; onChange: (value: string) => void; keepOpenOnClick?: boolean; options: { label?: string; value: string; icon: IconProps['variant']; disabled?: boolean; }[]; }; declare function OptionCardGroup({ value, onChange, options, keepOpenOnClick, }: OptionCardGroupProps): import("react/jsx-runtime").JSX.Element; export type { OptionCardGroupProps }; export { OptionCardGroup };