import * as React from 'react'; import { TailwindFn } from 'twrnc'; import { Style } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; label?: string; data: Array<{ label: string; key: string | number; }>; showRadio?: Boolean; style?: Style; labelStyle?: Style; dataStyle?: Style; radioStyle?: Style; onChangeOption: React.Dispatch>; value?: string | number; isHorizontal?: boolean; }; declare const RadioGroup: ({ tw, label, data, showRadio, labelStyle, dataStyle, radioStyle, onChangeOption, isHorizontal, value, style, }: Props) => JSX.Element; export default RadioGroup;