import { Text, View } from '@/components/shared/Themed'; import styled from '@emotion/native'; import { useNavigation } from 'expo-router'; import { NativeStackNavigationProp } from 'react-native-screens/lib/typescript/native-stack/types'; import Button from '@/components/shared/Button'; import { HorizontalSpacer, VerticalSpacer } from '@/components/shared/Spacers'; import { RootStackParamList } from '@/app/RootStackParamList'; type FinishContentProps = { handleStart: () => void; }; type NavigationProp = NativeStackNavigationProp; export default function FinishContent({ handleStart }: FinishContentProps) { const navigation = useNavigation(); return ( <>