import React from "react";
import { ThemeMode } from "../../types/theme";
interface ActivityDetailsProps {
    activity?: any;
    activityId?: string;
    apiKey: string;
    onBack: () => void;
    theme?: ThemeMode;
}
export default function ActivityDetails({ activity: initialActivity, activityId, apiKey, onBack, theme, }: ActivityDetailsProps): React.JSX.Element;
export {};
