import type { EditableNodeAttributes } from "../types"; import { type StudioImageSource } from "./StudioImage"; interface ImageProps extends EditableNodeAttributes { src?: StudioImageSource; alt?: string; className?: string; } export declare function Image({ src, alt, className, "data-node-id": dataNodeId }: ImageProps): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=Image.d.ts.map