import type { AttendanceCheckinEntryPageProps } from "./AttendanceCheckinEntryPage.types"; declare const useAttendanceCheckinEntryPage: (props: AttendanceCheckinEntryPageProps) => { data: { title: string; description: string; isLoading: boolean; feedbackMessage: string | null | undefined; feedbackSeverity: "warning" | "error" | "info" | "success" | undefined; targetButtonLabel: string | null | undefined; canOpenTarget: boolean; homeButtonLabel: string; }; fns: { handleOpenTarget: () => void; handleGoHome: () => void; }; }; export default useAttendanceCheckinEntryPage;