/// interface Props { title: string; content?: string; onClose: () => void; } export default function AlertDialog(props: Props): JSX.Element; export {};