@redocly/theme
Version:
Shared UI components lib
8 lines (7 loc) • 326 B
TypeScript
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 {};