import { EAlertType, IAlertConfig } from './alert.types';
import { EComponentSize } from '../../types';
/**
 * @part container - The alert container.
 */
export declare class KvAlert implements IAlertConfig {
    /** @inheritdoc */
    type: EAlertType;
    /** @inheritdoc */
    size?: EComponentSize;
    /** @inheritdoc */
    showIcon?: boolean;
    /** @inheritdoc */
    label: string;
    /** @inheritdoc */
    description?: string;
    render(): any;
}
