import React from 'react';
import { IElementOrillustration } from './types/elementOrIllustration';
/**
 * ElementOrIllustration component is a component that can be used to display an element or an illustration.
 * It can be used to display an illustration or a component.
 * @param {IElementOrillustration} props
 * @returns {JSX.Element}
 * @constructor
 * @example
 * <ElementOrIllustration illustration="illustration" />
 * <ElementOrIllustration illustration={<Illustration illustration="illustration" />} />
 * <ElementOrIllustration illustration={<Button variant="primary">Button</Button>} />
 */
export declare const ElementOrIllustration: React.ForwardRefExoticComponent<IElementOrillustration & React.RefAttributes<HTMLImageElement>>;
