import { RadioGroupProps, SelectField } from "@form-atoms/field"; import { PropsWithChildren } from "react"; import { RenderProp } from "react-render-prop-type"; import { FlowbiteFieldProps, type OptionRenderProp } from "../"; type ContainerProp = RenderProp; export type RadioFieldProps = FlowbiteFieldProps & RadioGroupProps & Partial; export declare const RadioField: ({ field, options, getValue, getLabel, label, helperText, required, initialValue, Container, Option, ...uiProps }: RadioFieldProps) => JSX.Element; export {};