import { ChevronProps } from '../Chevron/Chevron.interface'; import { SetContainerProps } from '../SetContainer'; import { ImageLinkProps } from './ImageLink'; export interface ImageLinkSetProps extends SetContainerProps { imageLinks: ImageLinkProps[]; callToActionRow?: ChevronProps[]; icon?: boolean; } export declare const ImageLinkSet: (props: ImageLinkSetProps) => import("react").JSX.Element;