import { App } from 'vue' import type { SFCWithInstall } from '@element-plus/utils/types' import RadioButton from '../radio/src/radio-button.vue' RadioButton.install = (app: App): void => { app.component(RadioButton.name, RadioButton) } const _RadioButton: SFCWithInstall = RadioButton export default _RadioButton