import React from "react";
import { SvgIconProps } from "@mui/material";
export interface IllustrationProps {
    title?: string;
    size?: number;
}
export declare const Illustration: <C extends React.ElementType<any>>(props: SvgIconProps<C, {
    component?: C | undefined;
    name?: string | undefined;
}>) => React.ReactElement;
