import type { ReactNode } from 'react'; import type { StyleProp, ViewStyle, TextStyle } from 'react-native'; export interface ActionsProps { options?: Record; optionTintColor?: string; icon?: () => ReactNode; wrapperStyle?: StyleProp; iconTextStyle?: StyleProp; containerStyle?: StyleProp; onPressActionButton?(): void; } declare const Actions: { ({ options, optionTintColor, icon, wrapperStyle, iconTextStyle, onPressActionButton, containerStyle, }: ActionsProps): JSX.Element; defaultProps: { options: {}; optionTintColor: string; icon: undefined; onPressActionButton: undefined; containerStyle: {}; iconTextStyle: {}; wrapperStyle: {}; }; }; export default Actions;