import React from 'react'; import { TextStyle } from 'react-native'; import { Action, CallbackOnBackHandler } from './PropsType'; export interface AlertContainerProps { title: React.ReactNode; content: React.ReactNode; actions: Action[]; onAnimationEnd?: (visible: boolean) => void; onBackHandler?: CallbackOnBackHandler; } export default class AlertContainer extends React.Component { constructor(props: AlertContainerProps); componentDidMount(): void; componentWillUnmount(): void; onBackAndroid: () => boolean; onClose: () => void; render(): JSX.Element; }