export type CustomCursorRecipeItem = { alt?: string; description?: string; imageSrc: string; title: string; }; export type CustomCursorRecipeProps = { actionCursorLabel?: string; actionHref?: string; actionLabel?: string; accentColor?: string; className?: string; contactCursorLabel?: string; contactHref?: string; contactLabel?: string; eyebrow?: string; footer?: string; headline?: string; intro?: string; items?: CustomCursorRecipeItem[]; }; export declare const CustomCursorRecipe: ({ actionCursorLabel, actionHref, actionLabel, accentColor, className, contactCursorLabel, contactHref, contactLabel, eyebrow, footer, headline, intro, items, }: CustomCursorRecipeProps) => import("react/jsx-runtime").JSX.Element;