import type { BindableProps } from "../types"; export type RadioGroupFieldProps = { name?: string; value?: string; } & BindableProps<{ required: boolean; }>; export declare const RadioGroupField: import("@qwik.dev/core").Component;