import { ControlTypes } from '../sharedTypes'; export interface RadioProps { arg: { type: ControlTypes; name: string; value: string; options?: Array | Record; control?: { options?: Array | Record; labels?: Array; }; }; onChange: (value: any) => void; } declare const RadioType: { ({ onChange, arg }: RadioProps): import("react/jsx-runtime").JSX.Element; serialize(value: any): any; deserialize(value: any): any; }; export default RadioType;