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