import { SvelteComponent } from "svelte"; declare const __propDef: { props: { checked?: boolean | undefined; id?: string | undefined; }; events: { change: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type InputRadioProps = typeof __propDef.props; export type InputRadioEvents = typeof __propDef.events; export type InputRadioSlots = typeof __propDef.slots; export default class InputRadio extends SvelteComponent { } export {};