import { SvelteComponentTyped } from "svelte";
import { RadioProps } from "../types";
declare const __propDef: {
    props: {
        value: RadioProps["value"];
        checked: RadioProps["checked"];
        name: RadioProps["name"];
        handleInputChange: RadioProps["handleInputChange"];
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type IndexProps = typeof __propDef.props;
export type IndexEvents = typeof __propDef.events;
export type IndexSlots = typeof __propDef.slots;
export default class Index extends SvelteComponentTyped<IndexProps, IndexEvents, IndexSlots> {
}
export {};
