import { default as React } from 'react'; export type IllustrationColor = 'neutral' | 'cherry' | 'blueberry'; export interface BaseSvgIllustrationProps { color: IllustrationColor; svgProperties: React.SVGProps; title: React.ReactNode; } export interface SvgIllustrationProps extends BaseSvgIllustrationProps { size: number; } export type SvgIllustration = React.ComponentType; export interface BaseIllustrationProps { ariaLabel?: string; size?: number; color?: IllustrationColor; className?: string; /** Sets the data-testid attribute. */ testId?: string; } export interface IllustrationProps extends BaseIllustrationProps { illustration: SvgIllustration; /** Ref passed to the component */ ref?: React.Ref; } export declare const Illustration: React.FC; export default Illustration;