import React from "react"; import * as z from "zod"; export declare const AccessBlockedPagePropsSchema: z.ZodObject<{ title: z.ZodString; description: z.ZodString; helperText: z.ZodString; countdownSeconds: z.ZodOptional; enableAutoCountdown: z.ZodOptional; logoUrl: z.ZodOptional; actions: z.ZodOptional>; onGoBackNow: z.ZodOptional, z.ZodVoid>>; onCountdownComplete: z.ZodOptional, z.ZodVoid>>; }, "strip", z.ZodTypeAny, { title: string; helperText: string; description: string; logoUrl?: string | undefined; actions?: React.ReactNode; countdownSeconds?: number | undefined; enableAutoCountdown?: boolean | undefined; onGoBackNow?: (() => void) | undefined; onCountdownComplete?: (() => void) | undefined; }, { title: string; helperText: string; description: string; logoUrl?: string | undefined; actions?: React.ReactNode; countdownSeconds?: number | undefined; enableAutoCountdown?: boolean | undefined; onGoBackNow?: (() => void) | undefined; onCountdownComplete?: (() => void) | undefined; }>; export type AccessBlockedPageProps = z.infer;