import type { Simplify } from 'type-fest'; import type { BaseFieldComponentProps } from './types.ts'; export type BaseRadioFieldProps = Simplify & { description?: string; disabled?: boolean; label: string; options: { [K in T]: string; }; }>; export declare const BaseRadioField: ({ description, disabled, error, label, name, options, readOnly, setValue, value }: BaseRadioFieldProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=BaseRadioField.d.ts.map