import { SvelteComponent } from "svelte";
export declare const meta: {
    title: string;
    component: typeof GeneralRadio;
    tags: string[];
    args: {
        options: {
            value: string;
            label: string;
        }[];
        legend: string;
    };
};
declare const __propDef: {
    props: Record<string, never>;
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type GeneralRadioProps = typeof __propDef.props;
export type GeneralRadioEvents = typeof __propDef.events;
export type GeneralRadioSlots = typeof __propDef.slots;
export default class GeneralRadio extends SvelteComponent<GeneralRadioProps, GeneralRadioEvents, GeneralRadioSlots> {
}
export {};
