import type { ImageProps } from './index-types';
export declare const Image: {
    (props: ImageProps): import("react/jsx-runtime").JSX.Element;
    serialize: (imageProps: {
        src: string;
    }) => {
        image: string;
    };
};
