import * as React from "react"; import { TextStyle, ViewStyle } from "react-native"; interface ISelectItem { id: string | number; label: string; fontStyle?: TextStyle; containerStyle?: ViewStyle; containerBackgroundColor?: string; handlePress: (key: string | number) => void; } export declare const SelectItem: React.FC; export {};