import type { InputHTMLAttributes } from 'react';
import type { FormFieldOption } from '@zod-to-form/core';
type RadioGroupProps = InputHTMLAttributes & {
name: string;
options?: FormFieldOption[];
};
export declare const RadioGroup: import("react").MemoExoticComponent<({ options, name, ...props }: RadioGroupProps) => import("react").JSX.Element>;
export {};
//# sourceMappingURL=RadioGroup.d.ts.map