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