/// import { TailwindFn } from 'twrnc'; import { Style } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; style?: Style; label?: string; labelStyle?: Style; radioStyle?: Style; checkedRadioStyle?: Style; value: boolean; onPress: () => void; icon?: string; accessibilityLabel?: string; accessibilityHint?: string; }; declare const Radio: ({ tw, label, style, labelStyle, radioStyle, checkedRadioStyle, value, onPress, icon, accessibilityLabel, accessibilityHint, }: Props) => JSX.Element; export default Radio;