import { FC } from 'react';
import { RadioItem } from '../../types';
declare type Props = {
    items: RadioItem[];
    onClick: (item: RadioItem) => void;
    activeItem?: string;
};
declare const RadioGroup: FC<Props>;
export default RadioGroup;
