import React from 'react'; import { TappableProps } from '../../components/Tappable/Tappable'; export declare type AlertActionProps = TappableProps & { type?: 'cancel' | 'destructive' | 'regular'; }; export declare const AlertAction: React.FC;