import type { FormEventHandler } from "react"; import type { AlertStatusType, CallToActionFormType } from "../../types/index"; import type { Control } from "react-hook-form"; type Props = { onClose: () => void; srcVideo?: string | null; isOnlyChildren?: boolean; onSubmit?: FormEventHandler | undefined; onClickCalendar?: () => void; alertState?: AlertStatusType; control: Control; isValid?: boolean; showCalendar?: boolean; renderCalendar?: boolean; isCalendarDisabled?: boolean; calendlySrc: string; calendarPrefill?: { email?: string; names?: string; message?: string; }; }; export declare const VideoScriptCta: ({ onClose, srcVideo, isOnlyChildren, onSubmit, control, isValid, onClickCalendar, alertState, renderCalendar, calendarPrefill, calendlySrc, isCalendarDisabled, showCalendar, }: Props) => import("react/jsx-runtime").JSX.Element; export {};