export declare enum AspectRatio { auto = "auto", square = "square", video = "video", videoVertical = "video-vertical" } export declare enum BackgroundColor { brand = "brand", emphasis = "emphasis", none = "transparent" } export declare class AmpImage { /** * Img src URL for the background image */ backgroundSrc: string; /** * Img src URL for the foreground image */ foregroundSrc: string; /** * Background color: brand, emphasis (will be hidden if backgroundSrc image is applied) */ backgroundColor: BackgroundColor; /** * Aspect Ratio for the image: auto (default), square, video, video-vertical */ aspectRatio: AspectRatio; /** * Alt for the background image */ backgroundAlt: string; /** * Alt for the foreground image */ foregroundAlt: string; /** * Point of Interest X Coordinate */ poiX: number; /** * Point of Interest Y Coordinate */ poiY: number; render(): any; }