import * as React from 'react'; export interface RadioGroupProps { id?: string; className?: string; children?: React.ReactNode; hidden?: boolean; value?: any; defaultValue?: any; placeholder?: string; disabled?: boolean; onChange?: any; style?: React.CSSProperties; width?: string; required?: boolean; title?: string; titleOrientation?: "Top" | "Right" | "Bottom" | "Left"; titleTextAlign?: "center" | "left" | "right"; titleClassName?: string; titleWidth?: string; radioPosition?: "column" | "row"; } declare const NeoRadioGroup: React.ForwardRefExoticComponent>; export default NeoRadioGroup;