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