/// import { StructureProps } from "./system/unions"; declare type ManagedRadioButtonFieldProps = StructureProps & { caption?: string; label: string; id: string; name: string; disabled?: boolean; }; export declare const ManagedRadioButtonField: ({ label, caption, id, disabled, name, ...props }: ManagedRadioButtonFieldProps) => JSX.Element; export {};