import { SvelteComponentTyped } from "svelte"; import type { Writable } from 'svelte/store'; declare const __propDef: { props: { [x: string]: any; selected: Writable; display?: string | undefined; background?: string | undefined; hover?: string | undefined; accent?: string | undefined; color?: string | undefined; fill?: string | undefined; rounded?: string | undefined; label?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; 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 {};