import type { AsChildTypes } from "../types"; import type { BindableProps } from "../types"; import { type PropsOf, type Signal } from "@qwik.dev/core"; export declare const radioGroupContextId: import("@qwik.dev/core").ContextId; export type RadioGroupContext = { localId: string; describedByIds: Signal; currItemIndex: number; inputRefs: Signal[]>; itemValues: Signal; selectedValue: Signal; loop: Signal; isDisabled: Signal; isLabel: Signal; isField: Signal; formName: Signal; isRequired: Signal; }; type RadioGroupRootProps = Omit, "onChange$"> & BindableProps<{ value: string; orientation: "horizontal" | "vertical"; loop: boolean; disabled: boolean; }> & { onChange$?: (value: string) => void; }; export declare const RadioGroupRoot: import("@qwik.dev/core").Component; export declare const PostRender: import("@qwik.dev/core").Component; export {};