import { EIllustrationName } from './illustration.types';
import { CustomCssClass, ICustomCss } from '../../types';
/**
 * @part illustration - The illustration container.
 */
export declare class KvIllustration implements ICustomCss {
    /** (required) Illustration symbol name */
    name: EIllustrationName;
    /** @inheritdoc */
    customClass?: CustomCssClass;
    render(): any;
}
