import { ReactNode } from 'react'; import { TextStyle, ViewStyle } from 'react-native'; export interface AlertProps { visible: boolean; onClose: () => void; title?: string; message?: string; icon?: ReactNode; children?: ReactNode; dismissOnBackdropPress?: boolean; borderRadius?: number; backgroundColor?: string; overlayColor?: string; shadowColor?: string; titleColor?: string; messageColor?: string; style?: ViewStyle; titleStyle?: TextStyle; messageStyle?: TextStyle; overlayStyle?: ViewStyle; iconContainerStyle?: ViewStyle; contentContainerStyle?: ViewStyle; } //# sourceMappingURL=Alert.types.d.ts.map