/// import { RadioOption } from "../types"; import { TypographyProps } from "../Typography"; import { ViewProps } from "react-native/types"; declare const RadioGroup: ({ options, value, onSelect, containerStyle, valueStyle, normalColor, selectedColor, minWidth, disabled, fullWidth, selectStyle }: { options: RadioOption[]; value?: RadioOption | undefined; onSelect: (value: RadioOption) => void; containerStyle?: ViewProps | undefined; valueStyle?: TypographyProps | undefined; selectStyle?: TypographyProps | undefined; normalColor?: string | undefined; selectedColor?: string | undefined; minWidth?: number | undefined; disabled?: boolean | undefined; fullWidth?: boolean | undefined; }) => import("react").JSX.Element; export default RadioGroup; //# sourceMappingURL=index.d.ts.map