import type { FormEventHandler } from "react"; import type { AlertStatusType, CallToActionFormType, ConfigurationForm } from "../../types/index"; import type { Control } from "react-hook-form"; type Props = { onClose: () => void; alertState?: AlertStatusType; onSubmit?: FormEventHandler | undefined; isValid?: boolean; isDirty?: boolean; control: Control; config?: ConfigurationForm; }; export declare const FormScriptCta: ({ onClose, alertState, onSubmit, control, config, isValid, isDirty, }: Props) => import("react/jsx-runtime").JSX.Element; export {};