import * as z from "zod"; export declare const AttendanceCheckinEntrySeveritySchema: z.ZodEnum<["success", "info", "warning", "error"]>; export declare const AttendanceCheckinEntryPagePropsSchema: z.ZodObject<{ title: z.ZodString; description: z.ZodOptional; isLoading: z.ZodOptional; feedbackMessage: z.ZodNullable>; feedbackSeverity: z.ZodOptional>; targetButtonLabel: z.ZodNullable>; onOpenTarget: z.ZodOptional, z.ZodVoid>>; onGoHome: z.ZodFunction, z.ZodVoid>; homeButtonLabel: z.ZodOptional; }, "strip", z.ZodTypeAny, { title: string; onGoHome: () => void; description?: string | undefined; feedbackMessage?: string | null | undefined; feedbackSeverity?: "warning" | "error" | "info" | "success" | undefined; isLoading?: boolean | undefined; targetButtonLabel?: string | null | undefined; onOpenTarget?: (() => void) | undefined; homeButtonLabel?: string | undefined; }, { title: string; onGoHome: () => void; description?: string | undefined; feedbackMessage?: string | null | undefined; feedbackSeverity?: "warning" | "error" | "info" | "success" | undefined; isLoading?: boolean | undefined; targetButtonLabel?: string | null | undefined; onOpenTarget?: (() => void) | undefined; homeButtonLabel?: string | undefined; }>; export type AttendanceCheckinEntrySeverity = z.infer; export type AttendanceCheckinEntryPageProps = z.infer;