import { AriaAttributes, QwikIntrinsicElements } from "@builder.io/qwik"; import { RadioIndicatorProps, RadioProps } from "./radio"; type Direction = "ltr" | "rtl"; type Orientation = AriaAttributes["aria-orientation"]; export type RadioGroupProps = { required?: RadioProps["required"]; disabled?: RadioProps["disabled"]; dir?: Direction; orientation?: Orientation; loop?: boolean; defaultValue?: string; value?: string; } & QwikIntrinsicElements["div"]; declare const RadioGroup: import("@builder.io/qwik").Component; export type RadioGroupItemProps = RadioProps; declare const RadioGroupItem: import("@builder.io/qwik").Component; export type RadioGroupIndicatorProps = RadioIndicatorProps; declare const RadioGroupIndicator: import("@builder.io/qwik").Component>; declare const Root: import("@builder.io/qwik").Component; declare const Item: import("@builder.io/qwik").Component; declare const Indicator: import("@builder.io/qwik").Component>; export { RadioGroup, RadioGroupItem, RadioGroupIndicator, Root, Item, Indicator };