import { AlertData, PromptData } from '../types/alertTypes';
export declare namespace Alert {
    function alert(params: AlertData): Promise<boolean>;
    function alert(title: string, description: string, onPress?: () => void): Promise<boolean>;
    function prompt(params: PromptData): Promise<string>;
    function prompt(title: string, description?: string, onPress?: () => void): Promise<string>;
}
