import { ImageProps } from './Image';
import type { ForwardRef } from './types';
export interface AspectImageProps extends ImageProps {
    ratio?: number;
}
/**
 * Image component constrained by as aspect ratio.
 * @see https://theme-ui.com/components/aspect-image
 */
export declare const AspectImage: ForwardRef<HTMLImageElement, AspectImageProps>;
