import { PropsWithChildren } from 'react'; interface AboutDialogProps { open: boolean; onClose(): void; } declare function AboutDialog({ open, onClose }: PropsWithChildren): JSX.Element; export default AboutDialog;