import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        id?: string;
        value?: any;
        group?: any;
        checked?: boolean;
        disabled?: boolean;
        size?: 'xs' | 'sm' | 'md' | 'lg';
        classes?: {
            root?: string;
            checkbox?: string;
            label?: string;
            icon?: string;
        };
    };
    events: {
        change: Event;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type RadioProps = typeof __propDef.props;
export type RadioEvents = typeof __propDef.events;
export type RadioSlots = typeof __propDef.slots;
export default class Radio extends SvelteComponentTyped<RadioProps, RadioEvents, RadioSlots> {
}
export {};
