/// import React from 'react'; export declare type AlertButtonType = { text: string; onPress?: () => void; style?: any; }; export interface AlertContainerProps { title: string; content: any; actions: Array; onAnimationEnd?: (visible: boolean) => void; } export default class AlertContainer extends React.Component { constructor(props: any); onClose: () => void; render(): JSX.Element; }