import { SvelteComponentTyped } from "svelte"; export interface Option { label: string; value: string; name: string; description?: string; } declare const __propDef: { props: { [x: string]: any; options?: Option[] | undefined; radioGroup: string; type?: "default" | "pill" | undefined; label?: string | undefined; srOnly?: boolean | undefined; columns?: "grid-cols-0" | "grid-cols-1" | "grid-cols-2" | "grid-cols-3" | "grid-cols-4" | "grid-cols-5" | "grid-cols-6" | undefined; gap?: "gap-0" | "gap-0.5" | "gap-1" | "gap-1.5" | "gap-2" | "gap-2.5" | "gap-3" | "gap-4" | "gap-5" | "gap-6" | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type RadioGroupProps = typeof __propDef.props; export declare type RadioGroupEvents = typeof __propDef.events; export declare type RadioGroupSlots = typeof __propDef.slots; export default class RadioGroup extends SvelteComponentTyped { } export {};