/** @typedef {typeof __propDef.props} RadioButtonOnProps */ /** @typedef {typeof __propDef.events} RadioButtonOnEvents */ /** @typedef {typeof __propDef.slots} RadioButtonOnSlots */ export default class RadioButtonOn extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type RadioButtonOnProps = typeof __propDef.props export type RadioButtonOnEvents = typeof __propDef.events export type RadioButtonOnSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}