import React from 'react';
import { type ImageProps } from '../../../components/Image/Image';
type MarkdocImageProps = React.PropsWithChildren<ImageProps> & {
    align?: 'left' | 'right' | 'center' | 'justify' | 'initial' | 'inherit';
};
export declare function Image(props: MarkdocImageProps): React.JSX.Element;
export {};
