export interface AlertProps {
    alertId: string;
    title?: string;
    leftButtonText?: string;
    rightButtonText?: string;
    leftButtonOnPress?: () => void;
    rightButtonOnPress?: () => void;
    onClose?: () => void;
    styles?: any;
}
