@fluster.io/dev
Version:
12 lines (11 loc) • 334 B
TypeScript
import { ReactNode } from 'react';
import { ImageComponentProps } from './img_component';
export interface MdxImageProps extends ImageComponentProps {
file?: string;
id?: string;
basePath: string;
}
export declare const MdxImage: {
({ file, basePath, ...props }: MdxImageProps): ReactNode;
displayName: string;
};