import type { AlertProps, AlertStates, AlertType, AlertVariant, HeadingLevel, KoliBriAlertEventCallbacks, LabelPropType } from '../../schema';
import type { JSX } from '../../stencil-public-runtime';
export declare class KolAlert implements AlertProps {
    render(): JSX.Element;
    _alert?: boolean;
    _hasCloser?: boolean;
    _label?: LabelPropType;
    _level?: HeadingLevel;
    _on?: KoliBriAlertEventCallbacks;
    _type?: AlertType;
    _variant?: AlertVariant;
    state: AlertStates;
}
