import { PreviewSize } from "../PropertyPreviewProps";
/**
 * @group Preview components
 */
export interface ImagePreviewProps {
    size: PreviewSize;
    url: string;
    /**
     * If true, image fills its container completely with object-fit cover
     */
    fill?: boolean;
}
/**
 * @group Preview components
 */
export declare function ImagePreview({ size, url, fill }: ImagePreviewProps): import("react/jsx-runtime").JSX.Element;
