import { EIllustrationName } from '../../types';
import { IIllustrationMessage } from './illustration-message.types';
/**
 * @part illustration - The illustration container.
 * @part header - The header container.
 * @part description - The description container.
 */
export declare class KvIllustrationMessage implements IIllustrationMessage {
    /** @inheritdoc */
    illustration: EIllustrationName;
    /** @inheritdoc */
    header: string;
    /** @inheritdoc */
    description?: string;
    render(): any;
}
