import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { ActionSheet, ValidTheme } from '../../types/actionSheetTypes'; type Props = { action: ActionSheet; backgroundColor: string; marginTop?: number; radius?: 'all' | 'top' | 'bottom' | 'none'; showIconOnIos?: boolean; style?: StyleProp; textColor?: string; theme: ValidTheme; }; export declare const ActionButton: ({ action, backgroundColor, marginTop, radius, showIconOnIos, style, textColor, theme, }: Props) => React.JSX.Element; export {};