import PropTypes from 'prop-types'; import React, { ReactNode } from 'react'; import { StyleProp, ViewStyle, TextStyle } from 'react-native'; export interface ActionsProps { options?: { [key: string]: () => void; }; optionTintColor?: string; icon?: () => ReactNode; wrapperStyle?: StyleProp; iconTextStyle?: StyleProp; containerStyle?: StyleProp; onPressActionButton?(): void; } export declare function Actions({ options, optionTintColor, icon, wrapperStyle, iconTextStyle, onPressActionButton, containerStyle, }: ActionsProps): React.JSX.Element; export declare namespace Actions { var propTypes: { options: PropTypes.Requireable; optionTintColor: PropTypes.Requireable; icon: PropTypes.Requireable<(...args: any[]) => any>; onPressActionButton: PropTypes.Requireable<(...args: any[]) => any>; wrapperStyle: PropTypes.Requireable>; containerStyle: PropTypes.Requireable>; }; }