import React from 'react'; type IdProps = { id: number; variant: 'vert' | 'horz' | 'icon' | 'model' | 'modelcrop'; }; type PlaceholderProps = { placeholder: true; variant: 'horz' | 'icon'; }; type HeroImageProps = (IdProps | PlaceholderProps) & Omit, 'src' | 'srcSet' | 'sizes' | 'id' | 'alt' | 'placeholder'>; export declare const HeroImage: React.ForwardRefExoticComponent>; export {};