import { FunctionComponent } from "react"; import { ImageStyle, TextStyle, ViewStyle } from "react-native"; declare const ChipComponent: FunctionComponent<{ style?: ViewStyle | TextStyle | ImageStyle | undefined; onPress: (() => void); }>; export { ChipComponent };