/// <reference types="react" />
import defaultTheme from "../../defaultTheme";
import type { Props } from "./types";
export declare const StyledImage: import("styled-components").StyledComponent<"img", any, {
    theme: typeof defaultTheme;
    illustrationName: string;
    margin: Props["margin"];
    size: Props["size"];
}, never>;
declare const IllustrationPrimitive: ({ name, alt, margin, size, dataTest, id, spaceAfter, }: Props) => JSX.Element;
export default IllustrationPrimitive;
