import { TextStyle, ViewStyle } from "react-native";

export type Props = {
  option: (string | number)[];
  onSelect: (values: (string | number)[]) => void;
  selectItem?: (string | number)[];
  styleConfig?: styleConfig;
};

export interface styleConfig {
  style?: TextStyle;
  selectedStyle?: ViewStyle;
}
