import React from "react"; import { GestureResponderEvent, StyleProp } from "react-native"; export type MenuButtonProps = { children?: React.ReactNode; style?: StyleProp; textStyle?: StyleProp; iconStyle?: StyleProp; icon?: string; onPress: (event?: GestureResponderEvent) => void; onLongPress?: (event?: GestureResponderEvent) => void; disabled?: boolean; type?: string; size?: string; iconFamily?: string; out?: boolean; rightComponent?: React.Component | React.FC | JSX.Element | string | number; }; export declare const MenuButton: React.FC; //# sourceMappingURL=MenuButton.d.ts.map