import React from "react"; export declare function Alert(props: AlertProps): JSX.Element; export interface AlertProps { style?: any; textStyle?: any; type: 'success' | 'error' | 'warning' | 'info'; text: string; children?: React.ReactNode; }