import type { AsChildTypes } from "../types"; import { type PropsOf, Signal } from "@qwik.dev/core"; export declare const radioGroupItemContextId: import("@qwik.dev/core").ContextId; type RadioGroupItemContext = { itemId: string; index: number; value: string; isSelected: Signal; }; type RadioGroupItemProps = PropsOf<"div"> & { value?: string; }; export declare const RadioGroupItem: import("@qwik.dev/core").Component; export {};