/// <reference types="react" />
import React from 'react';
export interface ModalProps {
    title?: string;
    visible: boolean;
    maskClosable?: boolean;
    closable?: boolean;
    footer?: Array<{}>;
    onClose?: () => void;
    transparent?: boolean;
    popup?: boolean;
    style?: {};
    animated?: boolean;
    bodyStyle?: {};
    animationType?: any;
    onAnimationEnd?: (visible: boolean) => void;
    animateAppear?: boolean;
    operation?: boolean;
}
export declare type Action = {
    text: string;
    onPress?: Function;
    style?: {};
};
export declare type Callback = (valueOrLogin: string, password?: string) => void;
export declare abstract class ModalComponent<P, S> extends React.Component<P, S> {
    static alert: (title: string | JSX.Element, message: string | JSX.Element, actions?: Action[], platform?: string) => {
        close: () => void;
    };
    static prompt: (title: string | JSX.Element, message: string | JSX.Element, callbackOrActions: Callback | Action[], type?: 'default' | 'secure-text' | 'login-password', defaultValue?: string, placeholders?: string[], platform?: string) => {
        close: () => void;
    };
    static operation: (actions?: Action[], platform?: string) => {
        close: () => void;
    };
}
