@kelvininc/ui-components
Version:
Kelvin UI Components
17 lines (16 loc) • 518 B
TypeScript
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;
}