import { ChevronProps } from '../Chevron/Chevron.interface'; import { ReactNode } from 'react'; export interface CallToActionBarInterface { id?: string; bannerSize: "Large" | "Medium" | "Small"; image: ImageInterface; imageMobileView: boolean; imagePlacement: "Left" | "Right"; bannerBehavior: "Fixed" | "Fixed Overlap" | "Sticky" | "Scroll"; headline: string | ReactNode; bodyCopy: string | ReactNode; callToActionRow: ChevronProps[]; internalName?: string; } export interface ImageInterface { src: string; alt?: string; width: number; height: number; }