import type { InputControllerConfig } from './index'; interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const RadioGroupInputController: $$__sveltets_2_IsomorphicComponent<{ /** * Component Props * External properties that configure the radio group's behavior and appearance */ value: string | { value: string; label: string; }; onChange: (newValue: string) => void; config?: InputControllerConfig; description?: string | undefined; onFocus?: () => void; /** * Configuration Options * Derived from config prop with fallbacks */ options?: { value: string; label: string; }[]; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type RadioGroupInputController = InstanceType; export default RadioGroupInputController;