import React from 'react';
export type ImageProps = {
    src?: string;
    srcSet?: string;
    alt?: string;
    className?: string;
    width?: string | number;
    height?: string | number;
    border?: string;
    withLightbox?: boolean;
    style?: React.CSSProperties | string;
};
export declare function Image(props: ImageProps): JSX.Element;
