import { Ref } from 'vue'; import { RadioOption } from '../../widgets/radio/TRadio'; type __VLS_Props = { optionValue: RadioOption; id: string; activeId: string; type?: "single" | "multiple"; list: any[]; checked: boolean; isSettingAnswer: boolean; showProgress: boolean; somebodyChecked: boolean; }; declare function setFocus(needSelect?: boolean): void; declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, { editStatus: Ref; setFocus: typeof setFocus; }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { updateActiveId: (...args: any[]) => void; updateValue: (...args: any[]) => void; updateInput: (...args: any[]) => void; updateSupplyInput: (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly>> & { onUpdateActiveId?: ((...args: any[]) => any) | undefined; onUpdateValue?: ((...args: any[]) => any) | undefined; onUpdateInput?: ((...args: any[]) => any) | undefined; onUpdateSupplyInput?: ((...args: any[]) => any) | undefined; }, {}, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; };