import { PlatformReportDialog } from '../common/PlatformReportDialog'; export type PlatformTaskCompletionDialogPayload = { source: string; message: string; }; type PlatformTaskCompletionDialogProps = { completion: PlatformTaskCompletionDialogPayload | null; onClose: () => void; overlayClassName?: string; panelClassName?: string; }; export function PlatformTaskCompletionDialog({ completion, onClose, overlayClassName = 'platform-theme platform-theme--light !items-center', panelClassName = 'platform-remap-surface rounded-[1.5rem]', }: PlatformTaskCompletionDialogProps) { return ( ); }