import { ViewStyle } from "react-native/types";

export type Props = {
  options: (string | number)[];
  selectedValue: string | number;
  onValueChange: (value: string | number) => void;
};
