import { type AnswerValue } from '../../questionnaire/models/QuestionnaireAnswers.model.ts'; type Props = { onFinish?: (answers: { questionId: string; title: string; answer: AnswerValue; }[]) => void; isLoading?: boolean; }; declare const FinishPage: import("svelte").Component; type FinishPage = ReturnType; export default FinishPage;