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