import { ImageProps } from "./Image.js";
import type { ForwardRef } from "./types.js";
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>;
