import { SvelteComponent } from "svelte"; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type RadioExampleProps = typeof __propDef.props; export type RadioExampleEvents = typeof __propDef.events; export type RadioExampleSlots = typeof __propDef.slots; export default class RadioExample extends SvelteComponent { } export {};