import PropTypes from 'prop-types'; import React, { ReactNode } from 'react'; import { StyleProp, ViewStyle, TextStyle } from 'react-native'; export interface ActionsProps { options?: { [key: string]: any; }; optionTintColor?: string; icon?: () => ReactNode; wrapperStyle?: StyleProp; iconTextStyle?: StyleProp; containerStyle?: StyleProp; onPressActionButton?(): void; } export default class Actions extends React.Component { static defaultProps: ActionsProps; static propTypes: { onSend: PropTypes.Requireable<(...args: any[]) => any>; options: PropTypes.Requireable; optionTintColor: PropTypes.Requireable; icon: PropTypes.Requireable<(...args: any[]) => any>; onPressActionButton: PropTypes.Requireable<(...args: any[]) => any>; wrapperStyle: PropTypes.Requireable; containerStyle: PropTypes.Requireable; }; static contextTypes: { actionSheet: PropTypes.Requireable<(...args: any[]) => any>; }; onActionsPress: () => void; renderIcon(): {} | null | undefined; render(): JSX.Element; }