import { TFieldsetWithHTMLAttributes } from '../../molecules/Fieldset';
import { TFancyListBox } from '../../organisms/FancyListBox';
export interface TFancyRadioListItem {
title: string;
description?: string;
itemKey: string;
}
export type TFancyRadioList = {
items: TFancyRadioListItem[];
name: string;
handler?: (itemKey: string) => void;
} & Omit & Omit;