import type { UseFormReturn } from "react-hook-form"; import type { inferSSRProps } from "@calcom/types/inferSSRProps"; import type { getServerSidePropsForSingleFormView } from "../components/getServerSidePropsSingleForm"; import type { RoutingFormWithResponseCount } from "../types/types"; export type SingleFormComponentProps = { form: RoutingFormWithResponseCount; appUrl: string; Page: React.FC<{ form: RoutingFormWithResponseCount; appUrl: string; hookForm: UseFormReturn; }>; enrichedWithUserProfileForm: inferSSRProps< typeof getServerSidePropsForSingleFormView >["enrichedWithUserProfileForm"]; permissions: inferSSRProps["permissions"]; };