import React from 'react'; import { Button, Dialog, Portal, Text } from 'react-native-paper'; type CustomDialogProps = { visible: boolean; hideDialog: () => void; contentText: string; titleText?: string; }; const DialogComponent: React.FC = ({ visible, hideDialog, contentText, }) => { return ( {contentText} ); }; export { DialogComponent };