import React from "react"; import { GestureResponderEvent, StyleProp } from "react-native"; type ItemValueType = string | number | boolean | null; type OptionItem = { label: string; value: ItemValueType; }; type Props = { children?: React.ReactNode; style?: StyleProp; iconName?: string; iconFont?: string; color?: string; badge?: string; feature?: boolean; disabled?: boolean; value?: ItemValueType; options?: Array; onPress?: (event?: GestureResponderEvent) => void; onChange?: (value?: ItemValueType) => void; }; export declare const MenuOptions: React.FC; export {}; //# sourceMappingURL=MenuOptions.d.ts.map