import React from 'react';
import { ImageProps } from './Image.types';
/**
 * Responsive image slice component that allows 4 by 3 or 16 by 9 images
 * with an optional caption.
 */
declare const Image: React.FunctionComponent<ImageProps>;
export default Image;
