import type { AnimationType } from "@shared/components/animation-wrapper"; export interface TypeCartRetentionBannerFields { entryTitle?: string; anchorId?: string; mainHeading?: string; description?: { json: any; }; cta?: { buttonLabel?: string; disableAnimation?: boolean; animationType?: AnimationType | AnimationType[]; [key: string]: any; }; } export type TypeCartRetentionBanner = TypeCartRetentionBannerFields;