import { ChangeEventProps, ChangeEventState, FocusEventProps, FocusEventState, FormCheckProps, FormProps, FormState, GlobalProps, GlobalState, InitializedState, SizeProps } from '../../shared/model'; export type DBRadioDefaultProps = { describedbyid?: string; }; export type DBRadioProps = DBRadioDefaultProps & GlobalProps & ChangeEventProps & FocusEventProps & FormProps & FormCheckProps & SizeProps; export type DBRadioDefaultState = {}; export type DBRadioState = DBRadioDefaultState & GlobalState & ChangeEventState & FocusEventState & FormState & InitializedState;