import type { PropsOf } from '@builder.io/qwik'; export interface RadioFieldProps extends PropsOf<'input'> { label: string; error?: string; } export declare const RadioField: import("@builder.io/qwik").Component;