/** @typedef {typeof __propDef.props}  RadioItemProps */
/** @typedef {typeof __propDef.events}  RadioItemEvents */
/** @typedef {typeof __propDef.slots}  RadioItemSlots */
export default class RadioItem extends SvelteComponentTyped<{
    value: any;
    name: any;
    group: any;
    label?: string;
    title?: string;
}, {
    keydown: KeyboardEvent;
    keyup: KeyboardEvent;
    keypress: KeyboardEvent;
    click: MouseEvent;
    change: Event;
} & {
    [evt: string]: CustomEvent<any>;
}, {
    default: {};
}> {
}
export type RadioItemProps = typeof __propDef.props;
export type RadioItemEvents = typeof __propDef.events;
export type RadioItemSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        value: any;
        name: any;
        group: any;
        label?: string;
        title?: string;
    };
    events: {
        keydown: KeyboardEvent;
        keyup: KeyboardEvent;
        keypress: KeyboardEvent;
        click: MouseEvent;
        change: Event;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export {};
