import React from 'react'; export declare type IllustrationProps = Readonly<{ title?: string; }>; declare type BaseIllustrationProps = IllustrationProps & Readonly<{ children: React.ReactNode; viewBox?: string; }>; export declare const Illustration: ({ children, title, viewBox, }: BaseIllustrationProps) => JSX.Element; export {};